mirror of
https://github.com/fail0verflow/switch-coreboot.git
synced 2025-05-04 01:39:18 -04:00
hook up arch/ to the make process
Signed-off-by: Stefan Reinauer <stepan@coresystems.de> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://coreboot.org/repository/LinuxBIOSv3@53 f3766cd6-281f-0410-b1cd-43a5c92072e9
This commit is contained in:
parent
b01a43ee71
commit
fab2c44c60
5 changed files with 26 additions and 3 deletions
1
Makefile
1
Makefile
|
@ -440,6 +440,7 @@ export LBBUILD_IMAGE ?= linuxbios.rom startup_code.rom
|
|||
|
||||
|
||||
core-y := mainboard/
|
||||
core-y += arch/
|
||||
ifeq ($(LBBUILD_COMPRESSORS),)
|
||||
core-y += compressors
|
||||
|
||||
|
|
9
arch/Makefile
Normal file
9
arch/Makefile
Normal file
|
@ -0,0 +1,9 @@
|
|||
#
|
||||
# Makefile for LinuxBIOS architectures
|
||||
#
|
||||
# (c) 2006 coresystems GmbH
|
||||
#
|
||||
|
||||
obj-$(CONFIG_ARCH_X86) += x86/
|
||||
obj-$(CONFIG_ARCH_POWERPC) += powerpc/
|
||||
|
8
arch/x86/Makefile
Normal file
8
arch/x86/Makefile
Normal file
|
@ -0,0 +1,8 @@
|
|||
#
|
||||
# Makefile for LinuxBIOS x86 architecture
|
||||
#
|
||||
# (c) 2006 coresystems GmbH
|
||||
#
|
||||
|
||||
obj-y += init/
|
||||
|
8
arch/x86/init/Makefile
Normal file
8
arch/x86/init/Makefile
Normal file
|
@ -0,0 +1,8 @@
|
|||
#
|
||||
# Makefile for LinuxBIOS x86 architecture
|
||||
#
|
||||
# (c) 2006 coresystems GmbH
|
||||
#
|
||||
|
||||
obj-y += init.o
|
||||
|
|
@ -1,11 +1,8 @@
|
|||
#
|
||||
# Makefile for this mainboard
|
||||
#
|
||||
# not configurable
|
||||
LBARCH=x86
|
||||
|
||||
obj-y = mainboard.o setup_before_car.o
|
||||
core-$(UNCOMPRESSORS) += uncompressors
|
||||
|
||||
$(obj)/mainboard.o: $(obj)/dtc.h
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue