Backport facility to specify a local coreboot version suffix from v3.
Tested on QEMU. Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de> Acked-by: Uwe Hermann <uwe@hermann-uwe.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4726 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
parent
ba6a93ddcb
commit
c04be9322c
4
Makefile
4
Makefile
|
@ -93,6 +93,10 @@ BUILD-y := src/lib src/boot src/console src/devices src/southbridge src/northbri
|
||||||
BUILD-y += util/cbfstool
|
BUILD-y += util/cbfstool
|
||||||
BUILD-$(CONFIG_ARCH_X86) += src/pc80
|
BUILD-$(CONFIG_ARCH_X86) += src/pc80
|
||||||
|
|
||||||
|
ifneq ($(CONFIG_LOCALVERSION),"")
|
||||||
|
COREBOOT_EXTRA_VERSION := -$(shell echo $(CONFIG_LOCALVERSION))
|
||||||
|
endif
|
||||||
|
|
||||||
# The primary target needs to be here before we include the
|
# The primary target needs to be here before we include the
|
||||||
# other files
|
# other files
|
||||||
|
|
||||||
|
|
|
@ -27,6 +27,15 @@
|
||||||
|
|
||||||
mainmenu "Coreboot Configuration"
|
mainmenu "Coreboot Configuration"
|
||||||
|
|
||||||
|
menu "General setup"
|
||||||
|
|
||||||
|
config LOCALVERSION
|
||||||
|
string "Local version - append to coreboot release"
|
||||||
|
help
|
||||||
|
Append an extra string to the end of the coreboot version.
|
||||||
|
|
||||||
|
endmenu
|
||||||
|
|
||||||
source src/mainboard/Kconfig
|
source src/mainboard/Kconfig
|
||||||
source src/arch/i386/Kconfig
|
source src/arch/i386/Kconfig
|
||||||
source src/arch/ppc/Kconfig
|
source src/arch/ppc/Kconfig
|
||||||
|
|
Loading…
Reference in New Issue