Author: oxygene Date: Tue Feb 23 11:33:25 2010 New Revision: 5149 URL: http://tracker.coreboot.org/trac/coreboot/changeset/5149
Log: Find out the svnversion we are working on is quite important. The whole command (which also parses git data, if it's a git-svn tree) is copied from original newconfig. Signed-off-by: Zheng Bao <[email protected]> Acked-by: Patrick Georgi <[email protected]> Modified: trunk/Makefile Modified: trunk/Makefile ============================================================================== --- trunk/Makefile Tue Feb 23 11:22:37 2010 (r5148) +++ trunk/Makefile Tue Feb 23 11:33:25 2010 (r5149) @@ -253,7 +253,7 @@ printf "/* build system definitions (autogenerated) */\n" > $(obj)/build.ht printf "#ifndef __BUILD_H\n" >> $(obj)/build.ht printf "#define __BUILD_H\n\n" >> $(obj)/build.ht - printf "#define COREBOOT_VERSION \"$(KERNELVERSION)\"\n" >> $(obj)/build.ht + printf "#define COREBOOT_VERSION \"$(KERNELVERSION)-r$(shell if [ -d $(top)/.svn -a -f `which svnversion` ]; then svnversion $(top); else if [ -d $(top)/.git -a -f `which git` ]; then git --git-dir=/$(top)/.git log|grep git-svn-id|cut -f 2 -d@|cut -f 1 -d' '|sort -g|tail -1; fi; fi)\"\n" >> $(obj)/build.ht printf "#define COREBOOT_EXTRA_VERSION \"$(COREBOOT_EXTRA_VERSION)\"\n" >> $(obj)/build.ht printf "#define COREBOOT_BUILD \"`LANG= date`\"\n" >> $(obj)/build.ht printf "\n" >> $(obj)/build.ht -- coreboot mailing list: [email protected] http://www.coreboot.org/mailman/listinfo/coreboot

