diff options
Diffstat (limited to 'src/mainboard/asi')
-rw-r--r-- | src/mainboard/asi/Kconfig | 14 | ||||
-rw-r--r-- | src/mainboard/asi/mb_5blgp/Kconfig | 9 | ||||
-rw-r--r-- | src/mainboard/asi/mb_5blmp/Kconfig | 9 |
3 files changed, 20 insertions, 12 deletions
diff --git a/src/mainboard/asi/Kconfig b/src/mainboard/asi/Kconfig index c85baebd7f..e409906e8e 100644 --- a/src/mainboard/asi/Kconfig +++ b/src/mainboard/asi/Kconfig @@ -16,13 +16,23 @@ ## along with this program; if not, write to the Free Software ## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA ## +if VENDOR_ASI choice prompt "Mainboard model" - depends on VENDOR_ASI + +config BOARD_ASI_MB_5BLGP + bool "MB-5BLGP" +config BOARD_ASI_MB_5BLMP + bool "MB-5BLMP" + +endchoice source "src/mainboard/asi/mb_5blgp/Kconfig" source "src/mainboard/asi/mb_5blmp/Kconfig" -endchoice +config MAINBOARD_VENDOR + string + default "ASI" +endif # VENDOR_ASI diff --git a/src/mainboard/asi/mb_5blgp/Kconfig b/src/mainboard/asi/mb_5blgp/Kconfig index 1734536f38..5278369fd0 100644 --- a/src/mainboard/asi/mb_5blgp/Kconfig +++ b/src/mainboard/asi/mb_5blgp/Kconfig @@ -16,9 +16,10 @@ ## along with this program; if not, write to the Free Software ## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA ## +if BOARD_ASI_MB_5BLGP -config BOARD_ASI_MB_5BLGP - bool "MB-5BLGP" +config BOARD_SPECIFIC_OPTIONS # dummy + def_bool y select ARCH_X86 select CPU_AMD_GX1 select NORTHBRIDGE_AMD_GX1 @@ -33,15 +34,13 @@ config BOARD_ASI_MB_5BLGP config MAINBOARD_DIR string default asi/mb_5blgp - depends on BOARD_ASI_MB_5BLGP config MAINBOARD_PART_NUMBER string default "MB-5BLGP" - depends on BOARD_ASI_MB_5BLGP config IRQ_SLOT_COUNT int default 3 - depends on BOARD_ASI_MB_5BLGP +endif # BOARD_ASI_MB_5BLGP diff --git a/src/mainboard/asi/mb_5blmp/Kconfig b/src/mainboard/asi/mb_5blmp/Kconfig index 6434c7878b..5b3b5bd4ce 100644 --- a/src/mainboard/asi/mb_5blmp/Kconfig +++ b/src/mainboard/asi/mb_5blmp/Kconfig @@ -16,9 +16,10 @@ ## along with this program; if not, write to the Free Software ## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA ## +if BOARD_ASI_MB_5BLMP -config BOARD_ASI_MB_5BLMP - bool "MB-5BLMP" +config BOARD_SPECIFIC_OPTIONS # dummy + def_bool y select ARCH_X86 select CPU_AMD_GX1 select NORTHBRIDGE_AMD_GX1 @@ -33,15 +34,13 @@ config BOARD_ASI_MB_5BLMP config MAINBOARD_DIR string default asi/mb_5blmp - depends on BOARD_ASI_MB_5BLMP config MAINBOARD_PART_NUMBER string default "MB-5BLMP" - depends on BOARD_ASI_MB_5BLMP config IRQ_SLOT_COUNT int default 5 - depends on BOARD_ASI_MB_5BLMP +endif # BOARD_ASI_MB_5BLMP |