Changeset 5108
- Timestamp:
- Feb 10, 2010 7:08:22 PM (3 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
-
README (modified) (1 diff)
-
src/arch/i386/Makefile.inc (modified) (1 diff)
-
util/abuild/abuild (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/README
r5037 r5108 36 36 * make 37 37 * python 38 * perl39 38 40 39 Optional: -
trunk/src/arch/i386/Makefile.inc
r5105 r5108 84 84 else 85 85 $(obj)/mainboard/$(MAINBOARDDIR)/romstage.inc: $(src)/mainboard/$(MAINBOARDDIR)/romstage.c $(OPTION_TABLE_H) $(obj)/build.h 86 $(CC) $(DISTRO_CFLAGS) $(CFLAGS) $(CPPFLAGS) $(DEBUG_CFLAGS) -I$(src) -I. -c -S $< -o $@ 87 perl -e 's/\.rodata/.rom.data/g' -pi $@ 88 perl -e 's/\.text/.section .rom.text/g' -pi $@ 86 $(CC) $(DISTRO_CFLAGS) $(CFLAGS) $(CPPFLAGS) $(DEBUG_CFLAGS) -I$(src) -I. -c -S $< -o - | sed -e 's/\.rodata/.rom.data/g' -e 's/\.text/.section .rom.text/g' > $@.tmp 87 mv $@.tmp $@ 89 88 endif 90 89 endif -
trunk/util/abuild/abuild
r5106 r5108 217 217 218 218 CURR=$( pwd ) 219 stime=`perl -e 'print time();' `219 stime=`perl -e 'print time();' 2>/dev/null || date +%s` 220 220 build_dir=$TARGET/${VENDOR}_${MAINBOARD} 221 221 eval $MAKE $silent -j $cpus obj=${build_dir} \ … … 226 226 mv ..config.tmp ${build_dir}/config.deps 227 227 cd $TARGET/${VENDOR}_${MAINBOARD} 228 etime=`perl -e 'print time();' `228 etime=`perl -e 'print time();' 2>/dev/null || date +%s` 229 229 duration=$(( $etime - $stime )) 230 230 if [ $ret -eq 0 ]; then
Note: See TracChangeset
for help on using the changeset viewer.
