Author: stepan Date: Sun Apr 18 10:31:32 2010 New Revision: 278 URL: http://tracker.coreboot.org/trac/buildrom/changeset/278
Log: Buildrom support for Asus M2V-MX SE Signed-off-by: Cristi MÄgheruÈan cristi.magherusan@net.utcluj.ro Acked-by: Stefan Reinauer stepan@coresystems.de
Added: buildrom-devel/config/platforms/asus_m2v-mx_se.conf Modified: buildrom-devel/config/platforms/Config.in buildrom-devel/config/platforms/platforms.conf
Modified: buildrom-devel/config/platforms/Config.in ============================================================================== --- buildrom-devel/config/platforms/Config.in Fri Nov 13 00:08:34 2009 (r277) +++ buildrom-devel/config/platforms/Config.in Sun Apr 18 10:31:32 2010 (r278) @@ -104,6 +104,13 @@ select PLATFORM select PLATFORM_SUPPORT_64BIT
+config PLATFORM_ASUS_M2V_MX_SE + bool "ASUS M2V-MX SE" + 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_m2v-mx_se.conf ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ buildrom-devel/config/platforms/asus_m2v-mx_se.conf Sun Apr 18 10:31:32 2010 (r278) @@ -0,0 +1,28 @@ +# Support for the ASUS A8V-E SE 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=m2v-mx_se +CBV2_TDIR=m2v-mx_se +CBV2_TAG=4426
Modified: buildrom-devel/config/platforms/platforms.conf ============================================================================== --- buildrom-devel/config/platforms/platforms.conf Fri Nov 13 00:08:34 2009 (r277) +++ buildrom-devel/config/platforms/platforms.conf Sun Apr 18 10:31:32 2010 (r278) @@ -23,6 +23,7 @@ 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_ASUS_M2V_MX_SE) = asus_m2v-mx_se.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