Drop boot directory
It only has two files, move them to src/lib Change-Id: I17943db4c455aa3a934db1cf56e56e89c009679f Signed-off-by: Stefan Reinauer <reinauer@google.com> Reviewed-on: http://review.coreboot.org/1959 Reviewed-by: Ronald G. Minnich <rminnich@gmail.com> Tested-by: build bot (Jenkins)
This commit is contained in:
parent
179206a1ac
commit
1e753294c4
|
@ -48,7 +48,7 @@ PHONY+= clean-abuild coreboot lint lint-stable build-dirs
|
||||||
|
|
||||||
#######################################################################
|
#######################################################################
|
||||||
# root source directories of coreboot
|
# root source directories of coreboot
|
||||||
subdirs-y := src/lib src/boot src/console src/devices src/ec src/southbridge
|
subdirs-y := src/lib src/console src/devices src/ec src/southbridge
|
||||||
subdirs-y += src/northbridge src/superio src/drivers src/cpu src/vendorcode
|
subdirs-y += src/northbridge src/superio src/drivers src/cpu src/vendorcode
|
||||||
subdirs-y += util/cbfstool util/sconfig util/nvramtool
|
subdirs-y += util/cbfstool util/sconfig util/nvramtool
|
||||||
subdirs-y += src/arch/$(ARCHDIR-y)
|
subdirs-y += src/arch/$(ARCHDIR-y)
|
||||||
|
|
|
@ -1,2 +0,0 @@
|
||||||
ramstage-y += hardwaremain.c
|
|
||||||
ramstage-y += selfboot.c
|
|
|
@ -39,6 +39,8 @@ romstage-$(CONFIG_COLLECT_TIMESTAMPS) += timestamp.c
|
||||||
romstage-y += compute_ip_checksum.c
|
romstage-y += compute_ip_checksum.c
|
||||||
romstage-y += memmove.c
|
romstage-y += memmove.c
|
||||||
|
|
||||||
|
ramstage-y += hardwaremain.c
|
||||||
|
ramstage-y += selfboot.c
|
||||||
ifneq ($(CONFIG_HAVE_ARCH_MEMSET),y)
|
ifneq ($(CONFIG_HAVE_ARCH_MEMSET),y)
|
||||||
ramstage-y += memset.c
|
ramstage-y += memset.c
|
||||||
endif
|
endif
|
||||||
|
|
Loading…
Reference in New Issue