Signed-off-by: Jordan Crouse jordan.crouse@amd.com Index: buildrom/Config.in =================================================================== --- buildrom.orig/Config.in 2007-06-12 15:59:38.000000000 -0600 +++ buildrom/Config.in 2007-06-12 15:59:51.000000000 -0600 @@ -43,6 +43,18 @@ string "LinuxBIOS build directory" depends LB_USE_BUILD
+config LB_CUSTOM_REV + bool "Override the platform LinuxBIOS revision" + depends ADVANCED && !LB_USE_BUILD + default n + help + Say 'y' here to overide the default LinuxBIOS SVN revsion + from the platform configuration + +config LB_REVISION + string "LinuxBIOS revision" + depends LB_CUSTOM_REV + endmenu
config PLATFORM Index: buildrom/config/platforms/platforms.conf =================================================================== --- buildrom.orig/config/platforms/platforms.conf 2007-06-12 15:58:51.000000000 -0600 +++ buildrom/config/platforms/platforms.conf 2007-06-12 15:59:08.000000000 -0600 @@ -11,3 +11,14 @@ PLATFORM-$(CONFIG_PLATFORM_MSM800SEV) = msm800sev.conf
include $(CONFIG_DIR)/platforms/$(PLATFORM-y) + +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 +