mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
board: sandburst: delete FORCEBUILD
We had switched to Kbuild, so we do not need to delete sandburst board files at every build. U-Boot conventional build system did not check the update of command line option, -DBUILDUSER. Kbuild can handle it nicely and re-builds object files when command line options are changed. (The file ".*.cmd" stores the information how the file was generated at the previous build.) Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
This commit is contained in:
parent
3341bfecb5
commit
b831bb36bb
2 changed files with 2 additions and 10 deletions
|
@ -10,11 +10,7 @@
|
|||
#
|
||||
|
||||
# TBS: add for debugging purposes
|
||||
BUILDUSER := $(shell whoami)
|
||||
FORCEBUILD := $(shell rm -f karef.o)
|
||||
|
||||
ccflags-y += -DBUILDUSER='"$(BUILDUSER)"'
|
||||
# TBS: end debugging
|
||||
ccflags-y += -DBUILDUSER='"$(shell whoami)"'
|
||||
|
||||
obj-y = karef.o ../common/flash.o ../common/sb_common.o
|
||||
extra-y += init.o
|
||||
|
|
|
@ -9,11 +9,7 @@
|
|||
#
|
||||
|
||||
# TBS: add for debugging purposes
|
||||
BUILDUSER := $(shell whoami)
|
||||
FORCEBUILD := $(shell rm -f metrobox.o)
|
||||
|
||||
ccflags-y += -DBUILDUSER='"$(BUILDUSER)"'
|
||||
# TBS: end debugging
|
||||
ccflags-y += -DBUILDUSER='"$(shell whoami)"'
|
||||
|
||||
obj-y = metrobox.o ../common/flash.o ../common/sb_common.o
|
||||
extra-y += init.o
|
||||
|
|
Loading…
Reference in a new issue