[PATCH] update ikconfig generator script

From: Randy.Dunlap
Date: Tue Jun 22 2004 - 16:42:47 EST




http://bugme.osdl.org/show_bug.cgi?id=2701

Current script has problems with some shells and utilities.
Remove use of 'echo' in the script.

From: Roman Zippel <zippel@xxxxxxxxxxxxxx>
Signed-off-by: Randy Dunlap <rddunlap@xxxxxxxx>


Index: scripts/mkconfigs
===================================================================
RCS file: /home/other/cvs/linux/linux-2.6/scripts/mkconfigs,v
retrieving revision 1.1.1.3
diff -u -p -r1.1.1.3 mkconfigs
--- a/scripts/mkconfigs 29 Sep 2003 12:27:27 -0000 1.1.1.3
+++ b/scripts/mkconfigs 28 May 2004 11:12:33 -0000
@@ -34,10 +34,10 @@ fi
config=$1
makefile=$2

-echo "#ifndef _IKCONFIG_H"
-echo "#define _IKCONFIG_H"
-echo \
-"/*
+cat << EOF
+#ifndef _IKCONFIG_H
+#define _IKCONFIG_H
+/*
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -58,10 +58,10 @@ echo \
*
* This file is generated automatically by scripts/mkconfigs. Do not edit.
*
- */"
-
-echo "static char const ikconfig_config[] __attribute__((unused)) = "
-echo "\"CONFIG_BEGIN=n\\n\\"
-echo "`cat $config | sed 's/\"/\\\\\"/g' | grep "^#\? \?CONFIG_" | awk '{ print $0 "\\\\n\\\\" }' `"
-echo "CONFIG_END=n\\n\";"
-echo "#endif /* _IKCONFIG_H */"
+ */
+static char const ikconfig_config[] __attribute__((unused)) =
+"CONFIG_BEGIN=n\\n\\
+$(sed < $config -n 's/"/\\"/g;/^#\? \?CONFIG_/s/.*/&\\n\\/p')
+CONFIG_END=n\\n";
+#endif /* _IKCONFIG_H */
+EOF
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/