git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1577 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
37 lines
630 B
Plaintext
37 lines
630 B
Plaintext
uses CONFIG_SMP
|
|
|
|
init init/crt0.S.lb
|
|
ldscript init/ldscript.lb
|
|
|
|
makerule all
|
|
depends "linuxbios.rom"
|
|
end
|
|
|
|
makerule floppy
|
|
depends "all"
|
|
action "mcopy -o linuxbios.rom a:"
|
|
end
|
|
|
|
makerule nrv2b
|
|
depends "$(TOP)/util/nrv2b/nrv2b.c"
|
|
action "$(HOSTCC) -O2 -DENCODE -DDECODE -DMAIN -DVERBOSE -DNDEBUG -DBITSIZE=32 -DENDIAN=0 $< -o $@"
|
|
end
|
|
|
|
makerule linuxbios.rom
|
|
depends "linuxbios.strip buildrom"
|
|
action "./buildrom $< $@ $(PAYLOAD) $(ROM_IMAGE_SIZE) $(ROM_SECTION_SIZE)"
|
|
end
|
|
|
|
makerule crt0.S
|
|
depends "$(CRT0)"
|
|
action "cp $< $@"
|
|
end
|
|
|
|
addaction clean "rm -f romimage payload.*"
|
|
|
|
dir lib
|
|
dir boot
|
|
if CONFIG_SMP
|
|
dir smp
|
|
end
|