Submitter | Myles Watson |
---|---|
Date | 2009-09-29 17:38:04 |
Message ID | <2831fecf0909291038l6a85f04ra8fd9c5fb4a1732a@mail.gmail.com> |
Download | mbox | patch |
Permalink | /patch/309/ |
State | Accepted |
Headers | show |
Comments
Patch
Index: svn/src/cpu/amd/model_fxx/Kconfig =================================================================== --- svn.orig/src/cpu/amd/model_fxx/Kconfig +++ svn/src/cpu/amd/model_fxx/Kconfig @@ -1,3 +1,7 @@ +config CPU_AMD_MODEL_FXX + bool + default n + config HAVE_INIT_TIMER bool default y Index: svn/src/northbridge/amd/amdk8/Kconfig =================================================================== --- svn.orig/src/northbridge/amd/amdk8/Kconfig +++ svn/src/northbridge/amd/amdk8/Kconfig @@ -31,6 +31,11 @@ config HAVE_HIGH_TABLES default y depends on NORTHBRIDGE_AMD_AMDK8 +config K8_HT_FREQ_1G + bool + default n + depends on NORTHBRIDGE_AMD_AMDK8 + config HYPERTRANSPORT_PLUGIN_SUPPORT bool default y
You can only use "select OptionFoo" if OptionFoo is declared as bool somewhere else. This patch gets the Tyan boards to build again. There may be some others that were broken in the same manner. Signed-off-by: Myles Watson <mylesgw@gmail.com> Thanks, Myles