Author: uwe Date: 2008-10-02 17:50:37 +0200 (Thu, 02 Oct 2008) New Revision: 243
Added: buildrom-devel/config/platforms/asus_a8n-e.conf Modified: buildrom-devel/config/platforms/Config.in buildrom-devel/config/platforms/platforms.conf Log: Add buildrom support for the ASUS A8N-E.
Signed-off-by: Uwe Hermann uwe@hermann-uwe.de Acked-by: Jordan Crouse jordan.crouse@amd.com
Modified: buildrom-devel/config/platforms/Config.in =================================================================== --- buildrom-devel/config/platforms/Config.in 2008-09-29 21:53:20 UTC (rev 242) +++ buildrom-devel/config/platforms/Config.in 2008-10-02 15:50:37 UTC (rev 243) @@ -97,6 +97,13 @@ select PLATFORM select PLATFORM_SUPPORT_64BIT
+config PLATFORM_ASUS_A8N_E + bool "ASUS A8N-E" + depends on VENDOR_ASUS + depends on COREBOOT_V2 + select PLATFORM + select PLATFORM_SUPPORT_64BIT + config PLATFORM_GA_2761GXDK bool "GIGABYTE GA-2761GXDK" depends on VENDOR_GIGABYTE
Added: buildrom-devel/config/platforms/asus_a8n-e.conf =================================================================== --- buildrom-devel/config/platforms/asus_a8n-e.conf (rev 0) +++ buildrom-devel/config/platforms/asus_a8n-e.conf 2008-10-02 15:50:37 UTC (rev 243) @@ -0,0 +1,29 @@ +# Support for the ASUS A8N-E board + +#### Platform configuration + +ifeq ($(CONFIG_TARGET_64BIT),y) +TARGET_ARCH=x86_64 +CFLAGS_platform = +else +TARGET_ARCH=i686 +CFLAGS_platform = +endif + +# kernel configuration (for LAB) + +# TODO + +UCLIBC_ARCH=$(TARGET_ARCH) + +# Etherboot configuration + +ETHERBOOT_ARCH=i386 + +# coreboot configuration + +COREBOOT_VENDOR=asus +COREBOOT_BOARD=a8n_e +CBV2_TDIR=asus_a8n_e +CBV2_TAG=3626 +
Modified: buildrom-devel/config/platforms/platforms.conf =================================================================== --- buildrom-devel/config/platforms/platforms.conf 2008-09-29 21:53:20 UTC (rev 242) +++ buildrom-devel/config/platforms/platforms.conf 2008-10-02 15:50:37 UTC (rev 243) @@ -22,6 +22,7 @@ PLATFORM-$(CONFIG_PLATFORM_DBE61) = dbe61.conf PLATFORM-$(CONFIG_PLATFORM_GA_M57SLI_S4) = m57sli.conf PLATFORM-$(CONFIG_PLATFORM_ASUS_A8V_E_SE) = asus_a8v-e_se.conf +PLATFORM-$(CONFIG_PLATFORM_ASUS_A8N_E) = asus_a8n-e.conf PLATFORM-$(CONFIG_PLATFORM_TYAN_S2881) = tyan-s2881.conf PLATFORM-$(CONFIG_PLATFORM_TYAN_S2882) = tyan-s2882.conf PLATFORM-$(CONFIG_PLATFORM_TYAN_S2891) = tyan-s2891.conf