Module Name: src Committed By: pooka Date: Tue Nov 3 18:22:44 UTC 2009
Modified Files: src/sys/rump/include/rump: makerumpdefs.sh Log Message: include AB_* macros from reboot.h To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 src/sys/rump/include/rump/makerumpdefs.sh Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/rump/include/rump/makerumpdefs.sh diff -u src/sys/rump/include/rump/makerumpdefs.sh:1.4 src/sys/rump/include/rump/makerumpdefs.sh:1.5 --- src/sys/rump/include/rump/makerumpdefs.sh:1.4 Fri Oct 9 14:31:47 2009 +++ src/sys/rump/include/rump/makerumpdefs.sh Tue Nov 3 18:22:44 2009 @@ -8,7 +8,7 @@ rm -f rumpdefs.h exec > rumpdefs.h -printf '/* $NetBSD: makerumpdefs.sh,v 1.4 2009/10/09 14:31:47 pooka Exp $ */\n\n' +printf '/* $NetBSD: makerumpdefs.sh,v 1.5 2009/11/03 18:22:44 pooka Exp $ */\n\n' printf '/*\n *\tAUTOMATICALLY GENERATED. DO NOT EDIT.\n */\n\n' printf '#ifndef _RUMP_RUMPDEFS_H_\n' printf '#define _RUMP_RUMPDEFS_H_\n\n' @@ -40,5 +40,7 @@ fromvers ../../../sys/reboot.h sed -n '/#define.*RB_[A-Z]/s/RB_/RUMP_RB_/gp' <../../../sys/reboot.h \ | sed 's,/\*.*$,,' +sed -n '/#define.*AB_[A-Z]/s/AB_/RUMP_AB_/gp' <../../../sys/reboot.h \ + | sed 's,/\*.*$,,' printf '\n#endif /* _RUMP_RUMPDEFS_H_ */\n'