diff options
author | Peter Stuge <peter@stuge.se> | 2009-04-14 07:40:01 +0000 |
---|---|---|
committer | Peter Stuge <peter@stuge.se> | 2009-04-14 07:40:01 +0000 |
commit | 483b7bbd7703ebe100ea7b10393e18712bbafc95 (patch) | |
tree | e789cebd812f01966e5a85fde02d3dafb147ac45 /src/arch | |
parent | 3935b19d9fb46ef8b57a1f2817d20113aa867920 (diff) | |
download | coreboot-483b7bbd7703ebe100ea7b10393e18712bbafc95.tar.xz |
v2/src romfs->cbfs rename
This also has the config tool changes in v2/util.
Rename romfs.[ch]->cbfs.[ch] and sed romfs->cbfs romtool->cbfstool ROMFS->CBFS
Signed-off-by: Peter Stuge <peter@stuge.se>
Acked-by: Ronald G. Minnich <rminnich@gmail.com>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4113 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/arch')
-rw-r--r-- | src/arch/i386/Config.lb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/arch/i386/Config.lb b/src/arch/i386/Config.lb index 3a2574a244..5f09066695 100644 --- a/src/arch/i386/Config.lb +++ b/src/arch/i386/Config.lb @@ -80,8 +80,8 @@ if USE_FAILOVER_IMAGE else makerule coreboot.rom depends "coreboot.strip buildrom $(PAYLOAD-1)" - action "PAYLOAD=$(PAYLOAD-1); if [ $(CONFIG_ROMFS) -eq 1 ]; then PAYLOAD=/dev/null; touch romfs-support; fi; ./buildrom $< $@ $$PAYLOAD $(ROM_IMAGE_SIZE) $(ROM_SECTION_SIZE)" - action "if [ $(CONFIG_COMPRESSED_PAYLOAD_LZMA) -eq 1 -a $(CONFIG_ROMFS) -eq 1 ]; then echo l > romfs-support; fi" + action "PAYLOAD=$(PAYLOAD-1); if [ $(CONFIG_CBFS) -eq 1 ]; then PAYLOAD=/dev/null; touch cbfs-support; fi; ./buildrom $< $@ $$PAYLOAD $(ROM_IMAGE_SIZE) $(ROM_SECTION_SIZE)" + action "if [ $(CONFIG_COMPRESSED_PAYLOAD_LZMA) -eq 1 -a $(CONFIG_CBFS) -eq 1 ]; then echo l > cbfs-support; fi" end end |