mirror of
https://github.com/linuxboot/heads.git
synced 2024-12-18 12:46:26 +00:00
talos-2: fix buildsystem: make paths dynamic for this board so board name can change over time
Signed-off-by: Thierry Laurion <insurgo@riseup.net>
This commit is contained in:
parent
2a8cc11a46
commit
d3ec7d7ba9
6
Makefile
6
Makefile
@ -231,9 +231,9 @@ ifeq ($(CONFIG_COREBOOT), y)
|
||||
# Legacy flash boards don't generate an update package, the only purpose of
|
||||
# those boards is to be flashed over vendor firmware via an exploit.
|
||||
ifneq ($(CONFIG_LEGACY_FLASH), y)
|
||||
# talos-2 builds its own update package, which is not integrated with the ZIP
|
||||
# method currently
|
||||
ifneq ($(BOARD), talos-2)
|
||||
# Boards containing 'talos-2' build their own update package, which is not integrated with the ZIP method currently
|
||||
ifneq ($(findstring talos-2, $(BOARD)),)
|
||||
else
|
||||
# Coreboot targets create an update package that can be applied with integrity
|
||||
# verification before flashing (see flash-gui.sh). The ZIP package format
|
||||
# allows other metadata that might be needed to added in the future without
|
||||
|
@ -128,7 +128,7 @@ CONFIG_CC_HAS_INT128=y
|
||||
# CONFIG_SYSFS_DEPRECATED is not set
|
||||
CONFIG_RELAY=y
|
||||
CONFIG_BLK_DEV_INITRD=y
|
||||
CONFIG_INITRAMFS_SOURCE="../../talos-2/initrd.cpio"
|
||||
CONFIG_INITRAMFS_SOURCE="../@BOARD_BUILD_DIR@/initrd.cpio"
|
||||
CONFIG_INITRAMFS_ROOT_UID=0
|
||||
CONFIG_INITRAMFS_ROOT_GID=0
|
||||
# CONFIG_RD_GZIP is not set
|
||||
|
Loading…
Reference in New Issue
Block a user