diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2014-10-14 03:22:26 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-10-14 03:22:26 -0400 |
| commit | f33a3faa25c569d2a7640de66bea69e15c12ecd1 (patch) | |
| tree | fd76278083896f1b9e9cac0870a15b5a4f5d6655 /scripts | |
| parent | 1b5a5f59e3435337bede67b9255bbb1d39fc4827 (diff) | |
| parent | 30142230a730263e9989e0174b74c2429e041c8c (diff) | |
Merge branch 'kbuild' of git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild
Pull kbuild changes from Michal Marek:
- fix for handling dependencies of *-objs targets by Masahiro Yamada
- lots of cleanups in the kbuild machinery, also by Masahiro
- fixes for the kconfig build to use an UTF-8 capable ncurses library
if possible and to build on not-so-standard installs
- some more minor fixes
* 'kbuild' of git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild:
kbuild: Do not reference *-n variables in the Makefile
kbuild: simplify build, clean, modbuiltin shorthands
kbuild: arm: Do not define "comma" twice
kbuild: remove obj-n and lib-n handling
kbuild: remove unnecessary variable initializaions
kbuild: remove unnecessary "obj- := dummy.o" trick
kbuild: handle C=... and M=... after entering into build directory
kbuild: use $(Q) for sub-make target
kbuild: fake the "Entering directory ..." message more simply
kconfig/lxdialog: get ncurses CFLAGS with pkg-config
kconfig: nconfig: fix multi-byte UTF handling
kconfig: lxdialog: fix spelling
kbuild: Make scripts executable
kbuild: remove redundant clean-files from scripts/kconfig/Makefile
kbuild: refactor script/kconfig/Makefile
kbuild: handle the dependency of multi-objs hostprogs appropriately
kbuild: handle multi-objs dependency appropriately
Diffstat (limited to 'scripts')
31 files changed, 35 insertions, 52 deletions
diff --git a/scripts/Kbuild.include b/scripts/Kbuild.include index 8a9a4e1c7eab..65e7b08bb2cc 100644 --- a/scripts/Kbuild.include +++ b/scripts/Kbuild.include | |||
| @@ -171,13 +171,13 @@ ld-ifversion = $(shell [ $(call ld-version) $(1) $(2) ] && echo $(3)) | |||
| 171 | # Shorthand for $(Q)$(MAKE) -f scripts/Makefile.build obj= | 171 | # Shorthand for $(Q)$(MAKE) -f scripts/Makefile.build obj= |
| 172 | # Usage: | 172 | # Usage: |
| 173 | # $(Q)$(MAKE) $(build)=dir | 173 | # $(Q)$(MAKE) $(build)=dir |
| 174 | build := -f $(if $(KBUILD_SRC),$(srctree)/)scripts/Makefile.build obj | 174 | build := -f $(srctree)/scripts/Makefile.build obj |
| 175 | 175 | ||
| 176 | ### | 176 | ### |
| 177 | # Shorthand for $(Q)$(MAKE) -f scripts/Makefile.modbuiltin obj= | 177 | # Shorthand for $(Q)$(MAKE) -f scripts/Makefile.modbuiltin obj= |
| 178 | # Usage: | 178 | # Usage: |
| 179 | # $(Q)$(MAKE) $(modbuiltin)=dir | 179 | # $(Q)$(MAKE) $(modbuiltin)=dir |
| 180 | modbuiltin := -f $(if $(KBUILD_SRC),$(srctree)/)scripts/Makefile.modbuiltin obj | 180 | modbuiltin := -f $(srctree)/scripts/Makefile.modbuiltin obj |
| 181 | 181 | ||
| 182 | # Prefix -I with $(srctree) if it is not an absolute path. | 182 | # Prefix -I with $(srctree) if it is not an absolute path. |
| 183 | # skip if -I has no parameter | 183 | # skip if -I has no parameter |
diff --git a/scripts/Makefile.build b/scripts/Makefile.build index bf3e6778cd71..649ce6844033 100644 --- a/scripts/Makefile.build +++ b/scripts/Makefile.build | |||
| @@ -79,11 +79,11 @@ endif | |||
| 79 | 79 | ||
| 80 | # =========================================================================== | 80 | # =========================================================================== |
| 81 | 81 | ||
| 82 | ifneq ($(strip $(lib-y) $(lib-m) $(lib-n) $(lib-)),) | 82 | ifneq ($(strip $(lib-y) $(lib-m) $(lib-)),) |
| 83 | lib-target := $(obj)/lib.a | 83 | lib-target := $(obj)/lib.a |
| 84 | endif | 84 | endif |
| 85 | 85 | ||
| 86 | ifneq ($(strip $(obj-y) $(obj-m) $(obj-n) $(obj-) $(subdir-m) $(lib-target)),) | 86 | ifneq ($(strip $(obj-y) $(obj-m) $(obj-) $(subdir-m) $(lib-target)),) |
| 87 | builtin-target := $(obj)/built-in.o | 87 | builtin-target := $(obj)/built-in.o |
| 88 | endif | 88 | endif |
| 89 | 89 | ||
| @@ -382,16 +382,14 @@ cmd_link_multi-y = $(LD) $(ld_flags) -r -o $@ $(link_multi_deps) $(cmd_secanalys | |||
| 382 | quiet_cmd_link_multi-m = LD [M] $@ | 382 | quiet_cmd_link_multi-m = LD [M] $@ |
| 383 | cmd_link_multi-m = $(cmd_link_multi-y) | 383 | cmd_link_multi-m = $(cmd_link_multi-y) |
| 384 | 384 | ||
| 385 | # We would rather have a list of rules like | 385 | $(multi-used-y): FORCE |
| 386 | # foo.o: $(foo-objs) | ||
| 387 | # but that's not so easy, so we rather make all composite objects depend | ||
| 388 | # on the set of all their parts | ||
| 389 | $(multi-used-y) : %.o: $(multi-objs-y) FORCE | ||
| 390 | $(call if_changed,link_multi-y) | 386 | $(call if_changed,link_multi-y) |
| 387 | $(call multi_depend, $(multi-used-y), .o, -objs -y) | ||
| 391 | 388 | ||
| 392 | $(multi-used-m) : %.o: $(multi-objs-m) FORCE | 389 | $(multi-used-m): FORCE |
| 393 | $(call if_changed,link_multi-m) | 390 | $(call if_changed,link_multi-m) |
| 394 | @{ echo $(@:.o=.ko); echo $(link_multi_deps); } > $(MODVERDIR)/$(@F:.o=.mod) | 391 | @{ echo $(@:.o=.ko); echo $(link_multi_deps); } > $(MODVERDIR)/$(@F:.o=.mod) |
| 392 | $(call multi_depend, $(multi-used-m), .o, -objs -y) | ||
| 395 | 393 | ||
| 396 | targets += $(multi-used-y) $(multi-used-m) | 394 | targets += $(multi-used-y) $(multi-used-m) |
| 397 | 395 | ||
diff --git a/scripts/Makefile.clean b/scripts/Makefile.clean index a651cee84f2a..b1c668dc6815 100644 --- a/scripts/Makefile.clean +++ b/scripts/Makefile.clean | |||
| @@ -10,7 +10,7 @@ __clean: | |||
| 10 | # Shorthand for $(Q)$(MAKE) scripts/Makefile.clean obj=dir | 10 | # Shorthand for $(Q)$(MAKE) scripts/Makefile.clean obj=dir |
| 11 | # Usage: | 11 | # Usage: |
| 12 | # $(Q)$(MAKE) $(clean)=dir | 12 | # $(Q)$(MAKE) $(clean)=dir |
| 13 | clean := -f $(if $(KBUILD_SRC),$(srctree)/)scripts/Makefile.clean obj | 13 | clean := -f $(srctree)/scripts/Makefile.clean obj |
| 14 | 14 | ||
| 15 | # The filename Kbuild has precedence over Makefile | 15 | # The filename Kbuild has precedence over Makefile |
| 16 | kbuild-dir := $(if $(filter /%,$(src)),$(src),$(srctree)/$(src)) | 16 | kbuild-dir := $(if $(filter /%,$(src)),$(src),$(srctree)/$(src)) |
| @@ -23,15 +23,13 @@ __subdir-y := $(patsubst %/,%,$(filter %/, $(obj-y))) | |||
| 23 | subdir-y += $(__subdir-y) | 23 | subdir-y += $(__subdir-y) |
| 24 | __subdir-m := $(patsubst %/,%,$(filter %/, $(obj-m))) | 24 | __subdir-m := $(patsubst %/,%,$(filter %/, $(obj-m))) |
| 25 | subdir-m += $(__subdir-m) | 25 | subdir-m += $(__subdir-m) |
| 26 | __subdir-n := $(patsubst %/,%,$(filter %/, $(obj-n))) | ||
| 27 | subdir-n += $(__subdir-n) | ||
| 28 | __subdir- := $(patsubst %/,%,$(filter %/, $(obj-))) | 26 | __subdir- := $(patsubst %/,%,$(filter %/, $(obj-))) |
| 29 | subdir- += $(__subdir-) | 27 | subdir- += $(__subdir-) |
| 30 | 28 | ||
| 31 | # Subdirectories we need to descend into | 29 | # Subdirectories we need to descend into |
| 32 | 30 | ||
| 33 | subdir-ym := $(sort $(subdir-y) $(subdir-m)) | 31 | subdir-ym := $(sort $(subdir-y) $(subdir-m)) |
| 34 | subdir-ymn := $(sort $(subdir-ym) $(subdir-n) $(subdir-)) | 32 | subdir-ymn := $(sort $(subdir-ym) $(subdir-)) |
| 35 | 33 | ||
| 36 | # Add subdir path | 34 | # Add subdir path |
| 37 | 35 | ||
diff --git a/scripts/Makefile.fwinst b/scripts/Makefile.fwinst index d8e335eed226..5b698add4f31 100644 --- a/scripts/Makefile.fwinst +++ b/scripts/Makefile.fwinst | |||
| @@ -2,7 +2,7 @@ | |||
| 2 | # Installing firmware | 2 | # Installing firmware |
| 3 | # | 3 | # |
| 4 | # We don't include the .config, so all firmware files are in $(fw-shipped-) | 4 | # We don't include the .config, so all firmware files are in $(fw-shipped-) |
| 5 | # rather than in $(fw-shipped-y) or $(fw-shipped-n). | 5 | # rather than in $(fw-shipped-y) or $(fw-shipped-m). |
| 6 | # ========================================================================== | 6 | # ========================================================================== |
| 7 | 7 | ||
| 8 | INSTALL := install | 8 | INSTALL := install |
diff --git a/scripts/Makefile.host b/scripts/Makefile.host index ab5980f91714..133edfae5b8a 100644 --- a/scripts/Makefile.host +++ b/scripts/Makefile.host | |||
| @@ -96,8 +96,9 @@ quiet_cmd_host-cmulti = HOSTLD $@ | |||
| 96 | cmd_host-cmulti = $(HOSTCC) $(HOSTLDFLAGS) -o $@ \ | 96 | cmd_host-cmulti = $(HOSTCC) $(HOSTLDFLAGS) -o $@ \ |
| 97 | $(addprefix $(obj)/,$($(@F)-objs)) \ | 97 | $(addprefix $(obj)/,$($(@F)-objs)) \ |
| 98 | $(HOST_LOADLIBES) $(HOSTLOADLIBES_$(@F)) | 98 | $(HOST_LOADLIBES) $(HOSTLOADLIBES_$(@F)) |
| 99 | $(host-cmulti): $(obj)/%: $(host-cobjs) FORCE | 99 | $(host-cmulti): FORCE |
| 100 | $(call if_changed,host-cmulti) | 100 | $(call if_changed,host-cmulti) |
| 101 | $(call multi_depend, $(host-cmulti), , -objs) | ||
| 101 | 102 | ||
| 102 | # Create .o file from a single .c file | 103 | # Create .o file from a single .c file |
| 103 | # host-cobjs -> .o | 104 | # host-cobjs -> .o |
| @@ -113,8 +114,9 @@ quiet_cmd_host-cxxmulti = HOSTLD $@ | |||
| 113 | $(foreach o,objs cxxobjs,\ | 114 | $(foreach o,objs cxxobjs,\ |
| 114 | $(addprefix $(obj)/,$($(@F)-$(o)))) \ | 115 | $(addprefix $(obj)/,$($(@F)-$(o)))) \ |
| 115 | $(HOST_LOADLIBES) $(HOSTLOADLIBES_$(@F)) | 116 | $(HOST_LOADLIBES) $(HOSTLOADLIBES_$(@F)) |
| 116 | $(host-cxxmulti): $(obj)/%: $(host-cobjs) $(host-cxxobjs) FORCE | 117 | $(host-cxxmulti): FORCE |
| 117 | $(call if_changed,host-cxxmulti) | 118 | $(call if_changed,host-cxxmulti) |
| 119 | $(call multi_depend, $(host-cxxmulti), , -objs -cxxobjs) | ||
| 118 | 120 | ||
| 119 | # Create .o file from a single .cc (C++) file | 121 | # Create .o file from a single .cc (C++) file |
| 120 | quiet_cmd_host-cxxobjs = HOSTCXX $@ | 122 | quiet_cmd_host-cxxobjs = HOSTCXX $@ |
diff --git a/scripts/Makefile.lib b/scripts/Makefile.lib index 260bf8acfce9..54be19a0fa51 100644 --- a/scripts/Makefile.lib +++ b/scripts/Makefile.lib | |||
| @@ -159,6 +159,15 @@ dtc_cpp_flags = -Wp,-MD,$(depfile).pre.tmp -nostdinc \ | |||
| 159 | modname-multi = $(sort $(foreach m,$(multi-used),\ | 159 | modname-multi = $(sort $(foreach m,$(multi-used),\ |
| 160 | $(if $(filter $(subst $(obj)/,,$*.o), $($(m:.o=-objs)) $($(m:.o=-y))),$(m:.o=)))) | 160 | $(if $(filter $(subst $(obj)/,,$*.o), $($(m:.o=-objs)) $($(m:.o=-y))),$(m:.o=)))) |
| 161 | 161 | ||
| 162 | # Useful for describing the dependency of composite objects | ||
| 163 | # Usage: | ||
| 164 | # $(call multi_depend, multi_used_targets, suffix_to_remove, suffix_to_add) | ||
| 165 | define multi_depend | ||
| 166 | $(foreach m, $(notdir $1), \ | ||
| 167 | $(eval $(obj)/$m: \ | ||
| 168 | $(addprefix $(obj)/, $(foreach s, $3, $($(m:%$(strip $2)=%$(s))))))) | ||
| 169 | endef | ||
| 170 | |||
| 162 | ifdef REGENERATE_PARSERS | 171 | ifdef REGENERATE_PARSERS |
| 163 | 172 | ||
| 164 | # GPERF | 173 | # GPERF |
diff --git a/scripts/bootgraph.pl b/scripts/bootgraph.pl index 9ca667bcaee9..9ca667bcaee9 100644..100755 --- a/scripts/bootgraph.pl +++ b/scripts/bootgraph.pl | |||
diff --git a/scripts/export_report.pl b/scripts/export_report.pl index 8f79b701de87..8f79b701de87 100644..100755 --- a/scripts/export_report.pl +++ b/scripts/export_report.pl | |||
diff --git a/scripts/gcc-goto.sh b/scripts/gcc-goto.sh index c9469d34ecc6..c9469d34ecc6 100644..100755 --- a/scripts/gcc-goto.sh +++ b/scripts/gcc-goto.sh | |||
diff --git a/scripts/gcc-ld b/scripts/gcc-ld index cadab9a13ed7..cadab9a13ed7 100644..100755 --- a/scripts/gcc-ld +++ b/scripts/gcc-ld | |||
diff --git a/scripts/gcc-version.sh b/scripts/gcc-version.sh index 7f2126df91f2..7f2126df91f2 100644..100755 --- a/scripts/gcc-version.sh +++ b/scripts/gcc-version.sh | |||
diff --git a/scripts/gcc-x86_32-has-stack-protector.sh b/scripts/gcc-x86_32-has-stack-protector.sh index 12dbd0b11ea4..12dbd0b11ea4 100644..100755 --- a/scripts/gcc-x86_32-has-stack-protector.sh +++ b/scripts/gcc-x86_32-has-stack-protector.sh | |||
diff --git a/scripts/gcc-x86_64-has-stack-protector.sh b/scripts/gcc-x86_64-has-stack-protector.sh index 973e8c141567..973e8c141567 100644..100755 --- a/scripts/gcc-x86_64-has-stack-protector.sh +++ b/scripts/gcc-x86_64-has-stack-protector.sh | |||
diff --git a/scripts/gen_initramfs_list.sh b/scripts/gen_initramfs_list.sh index 17fa901418ae..17fa901418ae 100644..100755 --- a/scripts/gen_initramfs_list.sh +++ b/scripts/gen_initramfs_list.sh | |||
diff --git a/scripts/headers_check.pl b/scripts/headers_check.pl index 62320f93e903..62320f93e903 100644..100755 --- a/scripts/headers_check.pl +++ b/scripts/headers_check.pl | |||
diff --git a/scripts/headers_install.sh b/scripts/headers_install.sh index fdebd66f8fc1..fdebd66f8fc1 100644..100755 --- a/scripts/headers_install.sh +++ b/scripts/headers_install.sh | |||
diff --git a/scripts/kconfig/Makefile b/scripts/kconfig/Makefile index ebf40f6edb4d..9645c0739386 100644 --- a/scripts/kconfig/Makefile +++ b/scripts/kconfig/Makefile | |||
| @@ -176,39 +176,10 @@ qconf-cxxobjs := qconf.o | |||
| 176 | qconf-objs := zconf.tab.o | 176 | qconf-objs := zconf.tab.o |
| 177 | gconf-objs := gconf.o zconf.tab.o | 177 | gconf-objs := gconf.o zconf.tab.o |
| 178 | 178 | ||
| 179 | hostprogs-y := conf | 179 | hostprogs-y := conf nconf mconf kxgettext qconf gconf |
| 180 | |||
| 181 | ifeq ($(MAKECMDGOALS),nconfig) | ||
| 182 | hostprogs-y += nconf | ||
| 183 | endif | ||
| 184 | |||
| 185 | ifeq ($(MAKECMDGOALS),menuconfig) | ||
| 186 | hostprogs-y += mconf | ||
| 187 | endif | ||
| 188 | |||
| 189 | ifeq ($(MAKECMDGOALS),update-po-config) | ||
| 190 | hostprogs-y += kxgettext | ||
| 191 | endif | ||
| 192 | |||
| 193 | ifeq ($(MAKECMDGOALS),xconfig) | ||
| 194 | qconf-target := 1 | ||
| 195 | endif | ||
| 196 | ifeq ($(MAKECMDGOALS),gconfig) | ||
| 197 | gconf-target := 1 | ||
| 198 | endif | ||
| 199 | |||
| 200 | |||
| 201 | ifeq ($(qconf-target),1) | ||
| 202 | hostprogs-y += qconf | ||
| 203 | endif | ||
| 204 | |||
| 205 | ifeq ($(gconf-target),1) | ||
| 206 | hostprogs-y += gconf | ||
| 207 | endif | ||
| 208 | 180 | ||
| 209 | clean-files := qconf.moc .tmp_qtcheck .tmp_gtkcheck | 181 | clean-files := qconf.moc .tmp_qtcheck .tmp_gtkcheck |
| 210 | clean-files += zconf.tab.c zconf.lex.c zconf.hash.c gconf.glade.h | 182 | clean-files += zconf.tab.c zconf.lex.c zconf.hash.c gconf.glade.h |
| 211 | clean-files += mconf qconf gconf nconf | ||
| 212 | clean-files += config.pot linux.pot | 183 | clean-files += config.pot linux.pot |
| 213 | 184 | ||
| 214 | # Check that we have the required ncurses stuff installed for lxdialog (menuconfig) | 185 | # Check that we have the required ncurses stuff installed for lxdialog (menuconfig) |
| @@ -239,11 +210,12 @@ HOSTCFLAGS_gconf.o = `pkg-config --cflags gtk+-2.0 gmodule-2.0 libglade-2.0` \ | |||
| 239 | HOSTLOADLIBES_mconf = $(shell $(CONFIG_SHELL) $(check-lxdialog) -ldflags $(HOSTCC)) | 210 | HOSTLOADLIBES_mconf = $(shell $(CONFIG_SHELL) $(check-lxdialog) -ldflags $(HOSTCC)) |
| 240 | 211 | ||
| 241 | HOSTLOADLIBES_nconf = $(shell \ | 212 | HOSTLOADLIBES_nconf = $(shell \ |
| 242 | pkg-config --libs menu panel ncurses 2>/dev/null \ | 213 | pkg-config --libs menuw panelw ncursesw 2>/dev/null \ |
| 214 | || pkg-config --libs menu panel ncurses 2>/dev/null \ | ||
| 243 | || echo "-lmenu -lpanel -lncurses" ) | 215 | || echo "-lmenu -lpanel -lncurses" ) |
| 244 | $(obj)/qconf.o: $(obj)/.tmp_qtcheck | 216 | $(obj)/qconf.o: $(obj)/.tmp_qtcheck |
| 245 | 217 | ||
| 246 | ifeq ($(qconf-target),1) | 218 | ifeq ($(MAKECMDGOALS),xconfig) |
| 247 | $(obj)/.tmp_qtcheck: $(src)/Makefile | 219 | $(obj)/.tmp_qtcheck: $(src)/Makefile |
| 248 | -include $(obj)/.tmp_qtcheck | 220 | -include $(obj)/.tmp_qtcheck |
| 249 | 221 | ||
| @@ -300,7 +272,7 @@ endif | |||
| 300 | 272 | ||
| 301 | $(obj)/gconf.o: $(obj)/.tmp_gtkcheck | 273 | $(obj)/gconf.o: $(obj)/.tmp_gtkcheck |
| 302 | 274 | ||
| 303 | ifeq ($(gconf-target),1) | 275 | ifeq ($(MAKECMDGOALS),gconfig) |
| 304 | -include $(obj)/.tmp_gtkcheck | 276 | -include $(obj)/.tmp_gtkcheck |
| 305 | 277 | ||
| 306 | # GTK needs some extra effort, too... | 278 | # GTK needs some extra effort, too... |
diff --git a/scripts/kconfig/lxdialog/check-lxdialog.sh b/scripts/kconfig/lxdialog/check-lxdialog.sh index 9d2a4c585ee1..5075ebf2d3b9 100644..100755 --- a/scripts/kconfig/lxdialog/check-lxdialog.sh +++ b/scripts/kconfig/lxdialog/check-lxdialog.sh | |||
| @@ -21,7 +21,11 @@ ldflags() | |||
| 21 | # Where is ncurses.h? | 21 | # Where is ncurses.h? |
| 22 | ccflags() | 22 | ccflags() |
| 23 | { | 23 | { |
| 24 | if [ -f /usr/include/ncursesw/curses.h ]; then | 24 | if pkg-config --cflags ncursesw 2>/dev/null; then |
| 25 | echo '-DCURSES_LOC="<ncurses.h>" -DNCURSES_WIDECHAR=1' | ||
| 26 | elif pkg-config --cflags ncurses 2>/dev/null; then | ||
| 27 | echo '-DCURSES_LOC="<ncurses.h>"' | ||
| 28 | elif [ -f /usr/include/ncursesw/curses.h ]; then | ||
| 25 | echo '-I/usr/include/ncursesw -DCURSES_LOC="<curses.h>"' | 29 | echo '-I/usr/include/ncursesw -DCURSES_LOC="<curses.h>"' |
| 26 | echo ' -DNCURSES_WIDECHAR=1' | 30 | echo ' -DNCURSES_WIDECHAR=1' |
| 27 | elif [ -f /usr/include/ncurses/ncurses.h ]; then | 31 | elif [ -f /usr/include/ncurses/ncurses.h ]; then |
diff --git a/scripts/kconfig/lxdialog/dialog.h b/scripts/kconfig/lxdialog/dialog.h index b4343d384926..fcffd5b41fb0 100644 --- a/scripts/kconfig/lxdialog/dialog.h +++ b/scripts/kconfig/lxdialog/dialog.h | |||
| @@ -170,7 +170,7 @@ char item_tag(void); | |||
| 170 | /* item list manipulation for lxdialog use */ | 170 | /* item list manipulation for lxdialog use */ |
| 171 | #define MAXITEMSTR 200 | 171 | #define MAXITEMSTR 200 |
| 172 | struct dialog_item { | 172 | struct dialog_item { |
| 173 | char str[MAXITEMSTR]; /* promtp displayed */ | 173 | char str[MAXITEMSTR]; /* prompt displayed */ |
| 174 | char tag; | 174 | char tag; |
| 175 | void *data; /* pointer to menu item - used by menubox+checklist */ | 175 | void *data; /* pointer to menu item - used by menubox+checklist */ |
| 176 | int selected; /* Set to 1 by dialog_*() function if selected. */ | 176 | int selected; /* Set to 1 by dialog_*() function if selected. */ |
diff --git a/scripts/kconfig/streamline_config.pl b/scripts/kconfig/streamline_config.pl index 9cb8522d8d22..9cb8522d8d22 100644..100755 --- a/scripts/kconfig/streamline_config.pl +++ b/scripts/kconfig/streamline_config.pl | |||
diff --git a/scripts/link-vmlinux.sh b/scripts/link-vmlinux.sh index 86a4fe75f453..86a4fe75f453 100644..100755 --- a/scripts/link-vmlinux.sh +++ b/scripts/link-vmlinux.sh | |||
diff --git a/scripts/markup_oops.pl b/scripts/markup_oops.pl index c21d16328d3f..c21d16328d3f 100644..100755 --- a/scripts/markup_oops.pl +++ b/scripts/markup_oops.pl | |||
diff --git a/scripts/mkmakefile b/scripts/mkmakefile index 84af27bf0f99..84af27bf0f99 100644..100755 --- a/scripts/mkmakefile +++ b/scripts/mkmakefile | |||
diff --git a/scripts/mksysmap b/scripts/mksysmap index 7ada35a0f478..7ada35a0f478 100644..100755 --- a/scripts/mksysmap +++ b/scripts/mksysmap | |||
diff --git a/scripts/package/builddeb b/scripts/package/builddeb index 35d5a5877d04..35d5a5877d04 100644..100755 --- a/scripts/package/builddeb +++ b/scripts/package/builddeb | |||
diff --git a/scripts/package/buildtar b/scripts/package/buildtar index e046bff33589..e046bff33589 100644..100755 --- a/scripts/package/buildtar +++ b/scripts/package/buildtar | |||
diff --git a/scripts/profile2linkerlist.pl b/scripts/profile2linkerlist.pl index 6943fa7cc95b..6943fa7cc95b 100644..100755 --- a/scripts/profile2linkerlist.pl +++ b/scripts/profile2linkerlist.pl | |||
diff --git a/scripts/rt-tester/rt-tester.py b/scripts/rt-tester/rt-tester.py index 6d916c2a45a5..6d916c2a45a5 100644..100755 --- a/scripts/rt-tester/rt-tester.py +++ b/scripts/rt-tester/rt-tester.py | |||
diff --git a/scripts/selinux/install_policy.sh b/scripts/selinux/install_policy.sh index f6a0ce71015f..f6a0ce71015f 100644..100755 --- a/scripts/selinux/install_policy.sh +++ b/scripts/selinux/install_policy.sh | |||
diff --git a/scripts/tracing/draw_functrace.py b/scripts/tracing/draw_functrace.py index db40fa04cd51..db40fa04cd51 100644..100755 --- a/scripts/tracing/draw_functrace.py +++ b/scripts/tracing/draw_functrace.py | |||
diff --git a/scripts/xz_wrap.sh b/scripts/xz_wrap.sh index 7a2d372f4885..7a2d372f4885 100644..100755 --- a/scripts/xz_wrap.sh +++ b/scripts/xz_wrap.sh | |||
