mirror of
https://github.com/linuxboot/linuxboot
synced 2024-11-21 23:59:59 +00:00
coreboot flags to strip build paths (issue #95)
This commit is contained in:
parent
1ec00592af
commit
26ef81f5fb
@ -13,11 +13,23 @@ coreboot_repo := https://github.com/osresearch/coreboot
|
|||||||
# The builds are done in a per-target subdirectory
|
# The builds are done in a per-target subdirectory
|
||||||
#coreboot_config := coreboot-$(TARGET).config
|
#coreboot_config := coreboot-$(TARGET).config
|
||||||
|
|
||||||
|
EXTRA_FLAGS := -fdebug-prefix-map=$(pwd)=heads -gno-record-gcc-switches
|
||||||
|
|
||||||
coreboot_configure := \
|
coreboot_configure := \
|
||||||
$(MAKE) oldconfig obj=./$(BOARD) DOTCONFIG=../../config/coreboot-$(BOARD).config
|
$(MAKE) \
|
||||||
|
oldconfig \
|
||||||
|
obj=./$(BOARD) \
|
||||||
|
DOTCONFIG=../../config/coreboot-$(BOARD).config \
|
||||||
|
CFLAGS_x86_32="$(EXTRA_FLAGS)" \
|
||||||
|
CFLAGS_x86_64="$(EXTRA_FLAGS)" \
|
||||||
|
|
||||||
coreboot_target := \
|
coreboot_target := \
|
||||||
obj=./$(BOARD) DOTCONFIG=../../config/coreboot-$(BOARD).config -j 8
|
obj=./$(BOARD) \
|
||||||
|
DOTCONFIG=../../config/coreboot-$(BOARD).config \
|
||||||
|
CFLAGS_x86_32="$(EXTRA_FLAGS)" \
|
||||||
|
CFLAGS_x86_64="$(EXTRA_FLAGS)" \
|
||||||
|
V=1 \
|
||||||
|
-j 8
|
||||||
|
|
||||||
coreboot_output := $(BOARD)/coreboot.rom
|
coreboot_output := $(BOARD)/coreboot.rom
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user