Changeset 5103
- Timestamp:
- Feb 9, 2010 8:41:11 PM (3 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
-
Makefile (modified) (2 diffs)
-
src/arch/i386/Kconfig (modified) (1 diff)
-
src/arch/i386/Makefile.tinybootblock.inc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Makefile
r5096 r5103 285 285 rm -rf $(DOXYGEN_OUTPUT_DIR) 286 286 287 clean: doxygen-clean 288 rm -f $(allobjs) $(obj)/coreboot* .xcompile 287 clean-for-update: doxygen-clean 288 rm -f $(objs) $(initobjs) $(drivers) $(smmobjs) .xcompile 289 rm -f $(obj)/coreboot_ram* $(obj)/coreboot.romstage $(obj)/coreboot.pre* $(obj)/coreboot.bootblock $(obj)/coreboot.a 289 290 rm -rf $(obj)/bootblock* $(obj)/romstage* $(obj)/location.* 290 rm -f $(obj)/option_table.* $(obj)/crt0_includes.h $(obj)/ldscript 291 rm -f $(obj)/option_table.* $(obj)/crt0_includes.h $(obj)/ldscript $(obj)/config.h 291 292 rm -f $(obj)/mainboard/$(MAINBOARDDIR)/static.c $(obj)/mainboard/$(MAINBOARDDIR)/config.py $(obj)/mainboard/$(MAINBOARDDIR)/static.dot 292 293 rm -f $(obj)/mainboard/$(MAINBOARDDIR)/auto.inc $(obj)/mainboard/$(MAINBOARDDIR)/crt0.s $(obj)/mainboard/$(MAINBOARDDIR)/crt0.disasm … … 294 295 $(MAKE) -C util/sconfig clean 295 296 297 clean: clean-for-update 298 rm -f $(obj)/coreboot* 299 296 300 distclean: clean 297 301 rm -rf $(obj) -
trunk/src/arch/i386/Kconfig
r5099 r5103 50 50 default y 51 51 52 config UPDATE_IMAGE 53 bool "Update existing coreboot.rom image" 54 default n 55 depends on TINY_BOOTBLOCK 56 help 57 If this option is activate, no new coreboot.rom file 58 is created. Instead it is expected that there already 59 is a suitable file for further processing. 60 The bootblock will not be modified. 61 52 62 config ROMCC 53 63 bool -
trunk/src/arch/i386/Makefile.tinybootblock.inc
r5102 r5103 4 4 # Build the final rom image 5 5 6 ifneq ($(CONFIG_UPDATE_IMAGE),y) 6 7 $(obj)/coreboot.pre1: $(obj)/coreboot.bootblock $(CBFSTOOL) 7 8 rm -f $@ 8 9 $(CBFSTOOL) $@ create $(CONFIG_COREBOOT_ROMSIZE_KB)K $(obj)/coreboot.bootblock 10 else 11 $(obj)/coreboot.pre1: $(CBFSTOOL) 12 mv $(obj)/coreboot.rom $@ 13 endif 9 14 10 15 $(obj)/coreboot.pre: $(obj)/coreboot.romstage $(obj)/coreboot.pre1 $(CBFSTOOL)
Note: See TracChangeset
for help on using the changeset viewer.
