diff options
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/Makefile.headersinst | 3 | ||||
| -rw-r--r-- | scripts/kconfig/conf.c | 15 | ||||
| -rw-r--r-- | scripts/kconfig/confdata.c | 115 | ||||
| -rw-r--r-- | scripts/kconfig/expr.c | 2 | ||||
| -rw-r--r-- | scripts/kconfig/lkc.h | 10 | ||||
| -rw-r--r-- | scripts/kconfig/nconf.c | 2 | ||||
| -rw-r--r-- | scripts/kconfig/symbol.c | 2 | ||||
| -rw-r--r-- | scripts/mkmakefile | 4 | ||||
| -rwxr-xr-x | scripts/recordmcount.pl | 7 | ||||
| -rwxr-xr-x | scripts/setlocalversion | 6 |
10 files changed, 115 insertions, 51 deletions
diff --git a/scripts/Makefile.headersinst b/scripts/Makefile.headersinst index 0fcd83838771..f89cb87f5c01 100644 --- a/scripts/Makefile.headersinst +++ b/scripts/Makefile.headersinst | |||
| @@ -3,7 +3,6 @@ | |||
| 3 | # | 3 | # |
| 4 | # header-y - list files to be installed. They are preprocessed | 4 | # header-y - list files to be installed. They are preprocessed |
| 5 | # to remove __KERNEL__ section of the file | 5 | # to remove __KERNEL__ section of the file |
| 6 | # unifdef-y - Same as header-y. Obsolete | ||
| 7 | # objhdr-y - Same as header-y but for generated files | 6 | # objhdr-y - Same as header-y but for generated files |
| 8 | # | 7 | # |
| 9 | # ========================================================================== | 8 | # ========================================================================== |
| @@ -20,7 +19,7 @@ include scripts/Kbuild.include | |||
| 20 | 19 | ||
| 21 | install := $(INSTALL_HDR_PATH)/$(_dst) | 20 | install := $(INSTALL_HDR_PATH)/$(_dst) |
| 22 | 21 | ||
| 23 | header-y := $(sort $(header-y) $(unifdef-y)) | 22 | header-y := $(sort $(header-y)) |
| 24 | subdirs := $(patsubst %/,%,$(filter %/, $(header-y))) | 23 | subdirs := $(patsubst %/,%,$(filter %/, $(header-y))) |
| 25 | header-y := $(filter-out %/, $(header-y)) | 24 | header-y := $(filter-out %/, $(header-y)) |
| 26 | 25 | ||
diff --git a/scripts/kconfig/conf.c b/scripts/kconfig/conf.c index 274f2716b03e..5b7c86ea43a1 100644 --- a/scripts/kconfig/conf.c +++ b/scripts/kconfig/conf.c | |||
| @@ -108,7 +108,7 @@ static int conf_askvalue(struct symbol *sym, const char *def) | |||
| 108 | check_stdin(); | 108 | check_stdin(); |
| 109 | case oldaskconfig: | 109 | case oldaskconfig: |
| 110 | fflush(stdout); | 110 | fflush(stdout); |
| 111 | fgets(line, 128, stdin); | 111 | xfgets(line, 128, stdin); |
| 112 | return 1; | 112 | return 1; |
| 113 | default: | 113 | default: |
| 114 | break; | 114 | break; |
| @@ -306,7 +306,7 @@ static int conf_choice(struct menu *menu) | |||
| 306 | check_stdin(); | 306 | check_stdin(); |
| 307 | case oldaskconfig: | 307 | case oldaskconfig: |
| 308 | fflush(stdout); | 308 | fflush(stdout); |
| 309 | fgets(line, 128, stdin); | 309 | xfgets(line, 128, stdin); |
| 310 | strip(line); | 310 | strip(line); |
| 311 | if (line[0] == '?') { | 311 | if (line[0] == '?') { |
| 312 | print_help(menu); | 312 | print_help(menu); |
| @@ -644,3 +644,14 @@ int main(int ac, char **av) | |||
| 644 | } | 644 | } |
| 645 | return 0; | 645 | return 0; |
| 646 | } | 646 | } |
| 647 | /* | ||
| 648 | * Helper function to facilitate fgets() by Jean Sacren. | ||
| 649 | */ | ||
| 650 | void xfgets(str, size, in) | ||
| 651 | char *str; | ||
| 652 | int size; | ||
| 653 | FILE *in; | ||
| 654 | { | ||
| 655 | if (fgets(str, size, in) == NULL) | ||
| 656 | fprintf(stderr, "\nError in reading or end of file.\n"); | ||
| 657 | } | ||
diff --git a/scripts/kconfig/confdata.c b/scripts/kconfig/confdata.c index f81f263b64f2..515253fe46cf 100644 --- a/scripts/kconfig/confdata.c +++ b/scripts/kconfig/confdata.c | |||
| @@ -412,7 +412,7 @@ static void conf_write_string(bool headerfile, const char *name, | |||
| 412 | while (1) { | 412 | while (1) { |
| 413 | l = strcspn(str, "\"\\"); | 413 | l = strcspn(str, "\"\\"); |
| 414 | if (l) { | 414 | if (l) { |
| 415 | fwrite(str, l, 1, out); | 415 | xfwrite(str, l, 1, out); |
| 416 | str += l; | 416 | str += l; |
| 417 | } | 417 | } |
| 418 | if (!*str) | 418 | if (!*str) |
| @@ -497,7 +497,9 @@ int conf_write_defconfig(const char *filename) | |||
| 497 | /* | 497 | /* |
| 498 | * If symbol is a choice value and equals to the | 498 | * If symbol is a choice value and equals to the |
| 499 | * default for a choice - skip. | 499 | * default for a choice - skip. |
| 500 | * But only if value equal to "y". | 500 | * But only if value is bool and equal to "y" and |
| 501 | * choice is not "optional". | ||
| 502 | * (If choice is "optional" then all values can be "n") | ||
| 501 | */ | 503 | */ |
| 502 | if (sym_is_choice_value(sym)) { | 504 | if (sym_is_choice_value(sym)) { |
| 503 | struct symbol *cs; | 505 | struct symbol *cs; |
| @@ -505,10 +507,9 @@ int conf_write_defconfig(const char *filename) | |||
| 505 | 507 | ||
| 506 | cs = prop_get_symbol(sym_get_choice_prop(sym)); | 508 | cs = prop_get_symbol(sym_get_choice_prop(sym)); |
| 507 | ds = sym_choice_default(cs); | 509 | ds = sym_choice_default(cs); |
| 508 | if (sym == ds) { | 510 | if (!sym_is_optional(cs) && sym == ds) { |
| 509 | if ((sym->type == S_BOOLEAN || | 511 | if ((sym->type == S_BOOLEAN) && |
| 510 | sym->type == S_TRISTATE) && | 512 | sym_get_tristate_value(sym) == yes) |
| 511 | sym_get_tristate_value(sym) == yes) | ||
| 512 | goto next_menu; | 513 | goto next_menu; |
| 513 | } | 514 | } |
| 514 | } | 515 | } |
| @@ -919,13 +920,73 @@ void conf_set_changed_callback(void (*fn)(void)) | |||
| 919 | conf_changed_callback = fn; | 920 | conf_changed_callback = fn; |
| 920 | } | 921 | } |
| 921 | 922 | ||
| 923 | static void randomize_choice_values(struct symbol *csym) | ||
| 924 | { | ||
| 925 | struct property *prop; | ||
| 926 | struct symbol *sym; | ||
| 927 | struct expr *e; | ||
| 928 | int cnt, def; | ||
| 922 | 929 | ||
| 923 | void conf_set_all_new_symbols(enum conf_def_mode mode) | 930 | /* |
| 931 | * If choice is mod then we may have more items slected | ||
| 932 | * and if no then no-one. | ||
| 933 | * In both cases stop. | ||
| 934 | */ | ||
| 935 | if (csym->curr.tri != yes) | ||
| 936 | return; | ||
| 937 | |||
| 938 | prop = sym_get_choice_prop(csym); | ||
| 939 | |||
| 940 | /* count entries in choice block */ | ||
| 941 | cnt = 0; | ||
| 942 | expr_list_for_each_sym(prop->expr, e, sym) | ||
| 943 | cnt++; | ||
| 944 | |||
| 945 | /* | ||
| 946 | * find a random value and set it to yes, | ||
| 947 | * set the rest to no so we have only one set | ||
| 948 | */ | ||
| 949 | def = (rand() % cnt); | ||
| 950 | |||
| 951 | cnt = 0; | ||
| 952 | expr_list_for_each_sym(prop->expr, e, sym) { | ||
| 953 | if (def == cnt++) { | ||
| 954 | sym->def[S_DEF_USER].tri = yes; | ||
| 955 | csym->def[S_DEF_USER].val = sym; | ||
| 956 | } | ||
| 957 | else { | ||
| 958 | sym->def[S_DEF_USER].tri = no; | ||
| 959 | } | ||
| 960 | } | ||
| 961 | csym->flags |= SYMBOL_DEF_USER; | ||
| 962 | /* clear VALID to get value calculated */ | ||
| 963 | csym->flags &= ~(SYMBOL_VALID); | ||
| 964 | } | ||
| 965 | |||
| 966 | static void set_all_choice_values(struct symbol *csym) | ||
| 924 | { | 967 | { |
| 925 | struct symbol *sym, *csym; | ||
| 926 | struct property *prop; | 968 | struct property *prop; |
| 969 | struct symbol *sym; | ||
| 927 | struct expr *e; | 970 | struct expr *e; |
| 928 | int i, cnt, def; | 971 | |
| 972 | prop = sym_get_choice_prop(csym); | ||
| 973 | |||
| 974 | /* | ||
| 975 | * Set all non-assinged choice values to no | ||
| 976 | */ | ||
| 977 | expr_list_for_each_sym(prop->expr, e, sym) { | ||
| 978 | if (!sym_has_value(sym)) | ||
| 979 | sym->def[S_DEF_USER].tri = no; | ||
| 980 | } | ||
| 981 | csym->flags |= SYMBOL_DEF_USER; | ||
| 982 | /* clear VALID to get value calculated */ | ||
| 983 | csym->flags &= ~(SYMBOL_VALID); | ||
| 984 | } | ||
| 985 | |||
| 986 | void conf_set_all_new_symbols(enum conf_def_mode mode) | ||
| 987 | { | ||
| 988 | struct symbol *sym, *csym; | ||
| 989 | int i, cnt; | ||
| 929 | 990 | ||
| 930 | for_all_symbols(i, sym) { | 991 | for_all_symbols(i, sym) { |
| 931 | if (sym_has_value(sym)) | 992 | if (sym_has_value(sym)) |
| @@ -961,8 +1022,6 @@ void conf_set_all_new_symbols(enum conf_def_mode mode) | |||
| 961 | 1022 | ||
| 962 | sym_clear_all_valid(); | 1023 | sym_clear_all_valid(); |
| 963 | 1024 | ||
| 964 | if (mode != def_random) | ||
| 965 | return; | ||
| 966 | /* | 1025 | /* |
| 967 | * We have different type of choice blocks. | 1026 | * We have different type of choice blocks. |
| 968 | * If curr.tri equal to mod then we can select several | 1027 | * If curr.tri equal to mod then we can select several |
| @@ -977,35 +1036,9 @@ void conf_set_all_new_symbols(enum conf_def_mode mode) | |||
| 977 | continue; | 1036 | continue; |
| 978 | 1037 | ||
| 979 | sym_calc_value(csym); | 1038 | sym_calc_value(csym); |
| 980 | 1039 | if (mode == def_random) | |
| 981 | if (csym->curr.tri != yes) | 1040 | randomize_choice_values(csym); |
| 982 | continue; | 1041 | else |
| 983 | 1042 | set_all_choice_values(csym); | |
| 984 | prop = sym_get_choice_prop(csym); | ||
| 985 | |||
| 986 | /* count entries in choice block */ | ||
| 987 | cnt = 0; | ||
| 988 | expr_list_for_each_sym(prop->expr, e, sym) | ||
| 989 | cnt++; | ||
| 990 | |||
| 991 | /* | ||
| 992 | * find a random value and set it to yes, | ||
| 993 | * set the rest to no so we have only one set | ||
| 994 | */ | ||
| 995 | def = (rand() % cnt); | ||
| 996 | |||
| 997 | cnt = 0; | ||
| 998 | expr_list_for_each_sym(prop->expr, e, sym) { | ||
| 999 | if (def == cnt++) { | ||
| 1000 | sym->def[S_DEF_USER].tri = yes; | ||
| 1001 | csym->def[S_DEF_USER].val = sym; | ||
| 1002 | } | ||
| 1003 | else { | ||
| 1004 | sym->def[S_DEF_USER].tri = no; | ||
| 1005 | } | ||
| 1006 | } | ||
| 1007 | csym->flags |= SYMBOL_DEF_USER; | ||
| 1008 | /* clear VALID to get value calculated */ | ||
| 1009 | csym->flags &= ~(SYMBOL_VALID); | ||
| 1010 | } | 1043 | } |
| 1011 | } | 1044 | } |
diff --git a/scripts/kconfig/expr.c b/scripts/kconfig/expr.c index 8f18e37892cb..330e7c0048a8 100644 --- a/scripts/kconfig/expr.c +++ b/scripts/kconfig/expr.c | |||
| @@ -1087,7 +1087,7 @@ void expr_print(struct expr *e, void (*fn)(void *, struct symbol *, const char * | |||
| 1087 | 1087 | ||
| 1088 | static void expr_print_file_helper(void *data, struct symbol *sym, const char *str) | 1088 | static void expr_print_file_helper(void *data, struct symbol *sym, const char *str) |
| 1089 | { | 1089 | { |
| 1090 | fwrite(str, strlen(str), 1, data); | 1090 | xfwrite(str, strlen(str), 1, data); |
| 1091 | } | 1091 | } |
| 1092 | 1092 | ||
| 1093 | void expr_fprint(struct expr *e, FILE *out) | 1093 | void expr_fprint(struct expr *e, FILE *out) |
diff --git a/scripts/kconfig/lkc.h b/scripts/kconfig/lkc.h index 76db065ed72c..bdf71bd31412 100644 --- a/scripts/kconfig/lkc.h +++ b/scripts/kconfig/lkc.h | |||
| @@ -72,6 +72,9 @@ void zconf_nextfile(const char *name); | |||
| 72 | int zconf_lineno(void); | 72 | int zconf_lineno(void); |
| 73 | char *zconf_curname(void); | 73 | char *zconf_curname(void); |
| 74 | 74 | ||
| 75 | /* conf.c */ | ||
| 76 | void xfgets(char *str, int size, FILE *in); | ||
| 77 | |||
| 75 | /* confdata.c */ | 78 | /* confdata.c */ |
| 76 | const char *conf_get_configname(void); | 79 | const char *conf_get_configname(void); |
| 77 | const char *conf_get_autoconfig_name(void); | 80 | const char *conf_get_autoconfig_name(void); |
| @@ -80,6 +83,13 @@ void sym_set_change_count(int count); | |||
| 80 | void sym_add_change_count(int count); | 83 | void sym_add_change_count(int count); |
| 81 | void conf_set_all_new_symbols(enum conf_def_mode mode); | 84 | void conf_set_all_new_symbols(enum conf_def_mode mode); |
| 82 | 85 | ||
| 86 | /* confdata.c and expr.c */ | ||
| 87 | static inline void xfwrite(const void *str, size_t len, size_t count, FILE *out) | ||
| 88 | { | ||
| 89 | if (fwrite(str, len, count, out) < count) | ||
| 90 | fprintf(stderr, "\nError in writing or end of file.\n"); | ||
| 91 | } | ||
| 92 | |||
| 83 | /* kconfig_load.c */ | 93 | /* kconfig_load.c */ |
| 84 | void kconfig_load(void); | 94 | void kconfig_load(void); |
| 85 | 95 | ||
diff --git a/scripts/kconfig/nconf.c b/scripts/kconfig/nconf.c index 762caf80ce37..2ba71bcd38e6 100644 --- a/scripts/kconfig/nconf.c +++ b/scripts/kconfig/nconf.c | |||
| @@ -676,6 +676,8 @@ static void *item_data(void) | |||
| 676 | struct mitem *mcur; | 676 | struct mitem *mcur; |
| 677 | 677 | ||
| 678 | cur = current_item(curses_menu); | 678 | cur = current_item(curses_menu); |
| 679 | if (!cur) | ||
| 680 | return NULL; | ||
| 679 | mcur = (struct mitem *) item_userptr(cur); | 681 | mcur = (struct mitem *) item_userptr(cur); |
| 680 | return mcur->usrptr; | 682 | return mcur->usrptr; |
| 681 | 683 | ||
diff --git a/scripts/kconfig/symbol.c b/scripts/kconfig/symbol.c index e95718fea355..943712ca6c0a 100644 --- a/scripts/kconfig/symbol.c +++ b/scripts/kconfig/symbol.c | |||
| @@ -937,6 +937,8 @@ static void sym_check_print_recursive(struct symbol *last_sym) | |||
| 937 | sym = stack->sym; | 937 | sym = stack->sym; |
| 938 | next_sym = stack->next ? stack->next->sym : last_sym; | 938 | next_sym = stack->next ? stack->next->sym : last_sym; |
| 939 | prop = stack->prop; | 939 | prop = stack->prop; |
| 940 | if (prop == NULL) | ||
| 941 | prop = stack->sym->prop; | ||
| 940 | 942 | ||
| 941 | /* for choice values find the menu entry (used below) */ | 943 | /* for choice values find the menu entry (used below) */ |
| 942 | if (sym_is_choice(sym) || sym_is_choice_value(sym)) { | 944 | if (sym_is_choice(sym) || sym_is_choice_value(sym)) { |
diff --git a/scripts/mkmakefile b/scripts/mkmakefile index 67d59c7a18dc..5325423ceab4 100644 --- a/scripts/mkmakefile +++ b/scripts/mkmakefile | |||
| @@ -44,7 +44,9 @@ all: | |||
| 44 | 44 | ||
| 45 | Makefile:; | 45 | Makefile:; |
| 46 | 46 | ||
| 47 | \$(all) %/: all | 47 | \$(all): all |
| 48 | @: | 48 | @: |
| 49 | 49 | ||
| 50 | %/: all | ||
| 51 | @: | ||
| 50 | EOF | 52 | EOF |
diff --git a/scripts/recordmcount.pl b/scripts/recordmcount.pl index 0171060b5fd6..e67f05486087 100755 --- a/scripts/recordmcount.pl +++ b/scripts/recordmcount.pl | |||
| @@ -159,6 +159,7 @@ my $section_regex; # Find the start of a section | |||
| 159 | my $function_regex; # Find the name of a function | 159 | my $function_regex; # Find the name of a function |
| 160 | # (return offset and func name) | 160 | # (return offset and func name) |
| 161 | my $mcount_regex; # Find the call site to mcount (return offset) | 161 | my $mcount_regex; # Find the call site to mcount (return offset) |
| 162 | my $mcount_adjust; # Address adjustment to mcount offset | ||
| 162 | my $alignment; # The .align value to use for $mcount_section | 163 | my $alignment; # The .align value to use for $mcount_section |
| 163 | my $section_type; # Section header plus possible alignment command | 164 | my $section_type; # Section header plus possible alignment command |
| 164 | my $can_use_local = 0; # If we can use local function references | 165 | my $can_use_local = 0; # If we can use local function references |
| @@ -213,6 +214,7 @@ $section_regex = "Disassembly of section\\s+(\\S+):"; | |||
| 213 | $function_regex = "^([0-9a-fA-F]+)\\s+<(.*?)>:"; | 214 | $function_regex = "^([0-9a-fA-F]+)\\s+<(.*?)>:"; |
| 214 | $mcount_regex = "^\\s*([0-9a-fA-F]+):.*\\smcount\$"; | 215 | $mcount_regex = "^\\s*([0-9a-fA-F]+):.*\\smcount\$"; |
| 215 | $section_type = '@progbits'; | 216 | $section_type = '@progbits'; |
| 217 | $mcount_adjust = 0; | ||
| 216 | $type = ".long"; | 218 | $type = ".long"; |
| 217 | 219 | ||
| 218 | if ($arch eq "x86_64") { | 220 | if ($arch eq "x86_64") { |
| @@ -351,6 +353,9 @@ if ($arch eq "x86_64") { | |||
| 351 | } elsif ($arch eq "microblaze") { | 353 | } elsif ($arch eq "microblaze") { |
| 352 | # Microblaze calls '_mcount' instead of plain 'mcount'. | 354 | # Microblaze calls '_mcount' instead of plain 'mcount'. |
| 353 | $mcount_regex = "^\\s*([0-9a-fA-F]+):.*\\s_mcount\$"; | 355 | $mcount_regex = "^\\s*([0-9a-fA-F]+):.*\\s_mcount\$"; |
| 356 | } elsif ($arch eq "blackfin") { | ||
| 357 | $mcount_regex = "^\\s*([0-9a-fA-F]+):.*\\s__mcount\$"; | ||
| 358 | $mcount_adjust = -4; | ||
| 354 | } else { | 359 | } else { |
| 355 | die "Arch $arch is not supported with CONFIG_FTRACE_MCOUNT_RECORD"; | 360 | die "Arch $arch is not supported with CONFIG_FTRACE_MCOUNT_RECORD"; |
| 356 | } | 361 | } |
| @@ -511,7 +516,7 @@ while (<IN>) { | |||
| 511 | } | 516 | } |
| 512 | # is this a call site to mcount? If so, record it to print later | 517 | # is this a call site to mcount? If so, record it to print later |
| 513 | if ($text_found && /$mcount_regex/) { | 518 | if ($text_found && /$mcount_regex/) { |
| 514 | push(@offsets, hex $1); | 519 | push(@offsets, (hex $1) + $mcount_adjust); |
| 515 | } | 520 | } |
| 516 | } | 521 | } |
| 517 | 522 | ||
diff --git a/scripts/setlocalversion b/scripts/setlocalversion index 64a9cb5556cd..057b6b3c5dfb 100755 --- a/scripts/setlocalversion +++ b/scripts/setlocalversion | |||
| @@ -43,7 +43,7 @@ scm_version() | |||
| 43 | fi | 43 | fi |
| 44 | 44 | ||
| 45 | # Check for git and a git repo. | 45 | # Check for git and a git repo. |
| 46 | if head=`git rev-parse --verify --short HEAD 2>/dev/null`; then | 46 | if test -d .git && head=`git rev-parse --verify --short HEAD 2>/dev/null`; then |
| 47 | 47 | ||
| 48 | # If we are at a tagged commit (like "v2.6.30-rc6"), we ignore | 48 | # If we are at a tagged commit (like "v2.6.30-rc6"), we ignore |
| 49 | # it, because this version is defined in the top level Makefile. | 49 | # it, because this version is defined in the top level Makefile. |
| @@ -85,8 +85,8 @@ scm_version() | |||
| 85 | fi | 85 | fi |
| 86 | 86 | ||
| 87 | # Check for mercurial and a mercurial repo. | 87 | # Check for mercurial and a mercurial repo. |
| 88 | if hgid=`hg id 2>/dev/null`; then | 88 | if test -d .hg && hgid=`hg id 2>/dev/null`; then |
| 89 | tag=`printf '%s' "$hgid" | cut -d' ' -f2` | 89 | tag=`printf '%s' "$hgid" | cut -s -d' ' -f2` |
| 90 | 90 | ||
| 91 | # Do we have an untagged version? | 91 | # Do we have an untagged version? |
| 92 | if [ -z "$tag" -o "$tag" = tip ]; then | 92 | if [ -z "$tag" -o "$tag" = tip ]; then |
