Author: jcrouse Date: 2007-06-21 18:39:46 +0200 (Thu, 21 Jun 2007) New Revision: 13
Added: buildrom-devel/buildrom/config/platforms/dbe61.conf Modified: buildrom-devel/buildrom/config/platforms/Config.in buildrom-devel/buildrom/config/platforms/platforms.conf Log: Add Artec Group dbe61 mainboard. Uses norwich defaults for the payloads.
Signed-off-by: Marc Jones marc.jones@amd.com Acked-by: Jordan Crouse jordan.crouse@amd.com Acked-by: Peter Stuge peter@stuge.se
Modified: buildrom-devel/buildrom/config/platforms/Config.in =================================================================== --- buildrom-devel/buildrom/config/platforms/Config.in 2007-06-20 21:30:06 UTC (rev 12) +++ buildrom-devel/buildrom/config/platforms/Config.in 2007-06-21 16:39:46 UTC (rev 13) @@ -14,13 +14,13 @@ bool "OLPC Laptop" select PLATFORM
+config PLATFORM_DBE61 + bool "Artec Group dbe61" + select PLATFORM + config PLATFORM_MSM800SEV bool "Digital Logic msm800sev" select PLATFORM
-config PLATFORM_DB800 - bool "AMD DB800" - select PLATFORM - endchoice endmenu
Added: buildrom-devel/buildrom/config/platforms/dbe61.conf =================================================================== --- buildrom-devel/buildrom/config/platforms/dbe61.conf (rev 0) +++ buildrom-devel/buildrom/config/platforms/dbe61.conf 2007-06-21 16:39:46 UTC (rev 13) @@ -0,0 +1,40 @@ +# Support for the Artec Group dbe61 platform +# Based on AMD norwich Geode LX platform +# Uses norwich config for payloads + +#### Platform configuration + +CC=gcc +STRIP=strip +AS=as + +TARGET_ARCH=i586 +CFLAGS_platform = + +# Targets + +KERNEL_MK=$(PACKAGE_DIR)/kernel/norwich-kernel.mk +LINUXBIOS_MK=$(PACKAGE_DIR)/linuxbios/norwich-linuxbios.mk + +# kernel configuration (for LAB) + +KERNEL_VERSION=2.6.20.2 +KERNEL_CONFIG=$(PACKAGE_DIR)/kernel/conf/norwich-defconfig +UCLIBC_ARCH=i386 + +# Etherboot configuration +ETHERBOOT_ARCH=i386 + +# LinuxBIOS configuration + +LINUXBIOS_VENDOR=artecgroup +LINUXBIOS_BOARD=dbe61 +LINUXBIOS_CONFIG=Config.lb +LINUXBIOS_TDIR=dbe61 +LINUXBIOS_TAG=2728 +LINUXBIOS_ROM_NAME=dbe61.rom + +# FILO configuration + +FILO_CONFIG=norwich-Config +
Modified: buildrom-devel/buildrom/config/platforms/platforms.conf =================================================================== --- buildrom-devel/buildrom/config/platforms/platforms.conf 2007-06-20 21:30:06 UTC (rev 12) +++ buildrom-devel/buildrom/config/platforms/platforms.conf 2007-06-21 16:39:46 UTC (rev 13) @@ -9,16 +9,6 @@ PLATFORM-$(CONFIG_PLATFORM_NORWICH) = norwich.conf PLATFORM-$(CONFIG_PLATFORM_OLPC) = olpc.conf PLATFORM-$(CONFIG_PLATFORM_MSM800SEV) = msm800sev.conf -PLATFORM-$(CONFIG_PLATFORM_DB800) = db800.conf -include $(CONFIG_DIR)/platforms/$(PLATFORM-y) +PLATFORM-$(CONFIG_PLATFORM_DBE61) = dbe61.conf
-ifeq ($(CONFIG_LB_CUSTOM_REV),y) -ifneq ($(CONFIG_LB_REVISION),) -_LB=$(subst ",,$(CONFIG_LB_REVISION)) -ifneq ($(LINUXBIOS_TAG),) -$(warning Overriding LinuxBIOS revision $(LINUXBIOS_TAG) with $(_LB)) -endif -LINUXBIOS_TAG := $(_LB) -endif -endif - +include $(CONFIG_DIR)/platforms/$(PLATFORM-y)