-- Tom Rini (TR1265) http://gate.crashing.org/~trini/===== Makefile 1.320 vs edited ===== --- 1.320/Makefile Mon Nov 11 08:08:41 2002 +++ edited/Makefile Mon Nov 11 09:30:45 2002 @@ -413,7 +413,7 @@ include/config/MARKER: scripts/split-include include/linux/autoconf.h @echo ' SPLIT include/linux/autoconf.h -> include/config/*' - @scripts/split-include include/linux/autoconf.h include/config + @scripts/split-include include/linux/autoconf.h include/config CONFIG_ @touch $@ # if .config is newer than include/linux/autoconf.h, someone tinkered ===== scripts/split-include.c 1.3 vs edited ===== --- 1.3/scripts/split-include.c Sun Jun 2 18:34:13 2002 +++ edited/scripts/split-include.c Mon Nov 11 09:29:55 2002 @@ -46,6 +46,7 @@ const char * str_my_name; const char * str_file_autoconf; const char * str_dir_config; + const char * str_split_token; FILE * fp_config; FILE * fp_target; @@ -61,7 +62,7 @@ struct stat stat_buf; /* Check arg count. */ - if (argc != 3) + if (argc != 4) { fprintf(stderr, "%s: wrong number of arguments.\n", argv[0]); exit(1); @@ -70,6 +71,7 @@ str_my_name = argv[0]; str_file_autoconf = argv[1]; str_dir_config = argv[2]; + str_split_token = argv[3]; /* Find a buffer size. */ if (stat(str_file_autoconf, &stat_buf) != 0) @@ -110,11 +112,11 @@ if (line[0] != '#') continue; - if ((str_config = strstr(line, "CONFIG_")) == NULL) + if ((str_config = strstr(line, str_split_token)) == NULL) continue; /* Make the output file name. */ - str_config += sizeof("CONFIG_") - 1; + str_config += strlen(str_split_token); for (itarget = 0; !isspace(str_config[itarget]); itarget++) { int c = (unsigned char) str_config[itarget]; - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/