diff options
| author | Linus Torvalds <torvalds@evo.osdl.org> | 2005-09-06 03:35:51 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@evo.osdl.org> | 2005-09-06 03:35:51 -0400 |
| commit | ef88b7dba2b47c70037a34a599d383462bb74bd3 (patch) | |
| tree | f50afe82c446cbf93893880878b97339fbdb8f49 /scripts | |
| parent | f65e77693aa5a1cf688fc378bc6913a56f9ff7b7 (diff) | |
| parent | aaebf4332018980fef4e601d1b5a6e52dd9e9ae4 (diff) | |
Merge master.kernel.org:/pub/scm/linux/kernel/git/sam/kbuild
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/Kbuild.include | 96 | ||||
| -rw-r--r-- | scripts/Makefile.build | 7 | ||||
| -rw-r--r-- | scripts/Makefile.clean | 14 | ||||
| -rw-r--r-- | scripts/Makefile.host | 3 | ||||
| -rw-r--r-- | scripts/Makefile.lib | 99 | ||||
| -rw-r--r-- | scripts/Makefile.modinst | 2 | ||||
| -rw-r--r-- | scripts/Makefile.modpost | 1 | ||||
| -rw-r--r-- | scripts/conmakehash.c | 2 | ||||
| -rw-r--r-- | scripts/kallsyms.c | 6 | ||||
| -rw-r--r-- | scripts/kconfig/lkc.h | 2 | ||||
| -rw-r--r-- | scripts/kconfig/menu.c | 4 | ||||
| -rw-r--r-- | scripts/kconfig/zconf.tab.c_shipped | 8 | ||||
| -rw-r--r-- | scripts/kconfig/zconf.y | 8 | ||||
| -rwxr-xr-x | scripts/kernel-doc | 8 | ||||
| -rw-r--r-- | scripts/lxdialog/dialog.h | 2 | ||||
| -rw-r--r-- | scripts/lxdialog/inputbox.c | 4 | ||||
| -rwxr-xr-x | scripts/mkcompile_h | 12 | ||||
| -rw-r--r-- | scripts/mod/sumversion.c | 8 | ||||
| -rw-r--r-- | scripts/package/Makefile | 24 | ||||
| -rw-r--r-- | scripts/package/builddeb | 56 | ||||
| -rw-r--r-- | scripts/package/buildtar | 111 | ||||
| -rwxr-xr-x | scripts/package/mkspec | 9 | ||||
| -rw-r--r-- | scripts/reference_discarded.pl | 1 | ||||
| -rw-r--r-- | scripts/reference_init.pl | 1 | ||||
| -rw-r--r-- | scripts/setlocalversion | 56 |
25 files changed, 397 insertions, 147 deletions
diff --git a/scripts/Kbuild.include b/scripts/Kbuild.include new file mode 100644 index 000000000000..9087273abf91 --- /dev/null +++ b/scripts/Kbuild.include | |||
| @@ -0,0 +1,96 @@ | |||
| 1 | #### | ||
| 2 | # kbuild: Generic definitions | ||
| 3 | |||
| 4 | # Convinient variables | ||
| 5 | comma := , | ||
| 6 | empty := | ||
| 7 | space := $(empty) $(empty) | ||
| 8 | |||
| 9 | ### | ||
| 10 | # The temporary file to save gcc -MD generated dependencies must not | ||
| 11 | # contain a comma | ||
| 12 | depfile = $(subst $(comma),_,$(@D)/.$(@F).d) | ||
| 13 | |||
| 14 | ### | ||
| 15 | # filechk is used to check if the content of a generated file is updated. | ||
| 16 | # Sample usage: | ||
| 17 | # define filechk_sample | ||
| 18 | # echo $KERNELRELEASE | ||
| 19 | # endef | ||
| 20 | # version.h : Makefile | ||
| 21 | # $(call filechk,sample) | ||
| 22 | # The rule defined shall write to stdout the content of the new file. | ||
| 23 | # The existing file will be compared with the new one. | ||
| 24 | # - If no file exist it is created | ||
| 25 | # - If the content differ the new file is used | ||
| 26 | # - If they are equal no change, and no timestamp update | ||
| 27 | # - stdin is piped in from the first prerequisite ($<) so one has | ||
| 28 | # to specify a valid file as first prerequisite (often the kbuild file) | ||
| 29 | define filechk | ||
| 30 | $(Q)set -e; \ | ||
| 31 | echo ' CHK $@'; \ | ||
| 32 | mkdir -p $(dir $@); \ | ||
| 33 | $(filechk_$(1)) < $< > $@.tmp; \ | ||
| 34 | if [ -r $@ ] && cmp -s $@ $@.tmp; then \ | ||
| 35 | rm -f $@.tmp; \ | ||
| 36 | else \ | ||
| 37 | echo ' UPD $@'; \ | ||
| 38 | mv -f $@.tmp $@; \ | ||
| 39 | fi | ||
| 40 | endef | ||
| 41 | |||
| 42 | ### | ||
| 43 | # Shorthand for $(Q)$(MAKE) -f scripts/Makefile.build obj= | ||
| 44 | # Usage: | ||
| 45 | # $(Q)$(MAKE) $(build)=dir | ||
| 46 | build := -f $(if $(KBUILD_SRC),$(srctree)/)scripts/Makefile.build obj | ||
| 47 | |||
| 48 | # If quiet is set, only print short version of command | ||
| 49 | cmd = @$(if $($(quiet)cmd_$(1)),\ | ||
| 50 | echo ' $(subst ','\'',$($(quiet)cmd_$(1)))' &&) $(cmd_$(1)) | ||
| 51 | |||
| 52 | ### | ||
| 53 | # if_changed - execute command if any prerequisite is newer than | ||
| 54 | # target, or command line has changed | ||
| 55 | # if_changed_dep - as if_changed, but uses fixdep to reveal dependencies | ||
| 56 | # including used config symbols | ||
| 57 | # if_changed_rule - as if_changed but execute rule instead | ||
| 58 | # See Documentation/kbuild/makefiles.txt for more info | ||
| 59 | |||
| 60 | ifneq ($(KBUILD_NOCMDDEP),1) | ||
| 61 | # Check if both arguments has same arguments. Result in empty string if equal | ||
| 62 | # User may override this check using make KBUILD_NOCMDDEP=1 | ||
| 63 | arg-check = $(strip $(filter-out $(1), $(2)) $(filter-out $(2), $(1)) ) | ||
| 64 | endif | ||
| 65 | |||
| 66 | # echo command. Short version is $(quiet) equals quiet, otherwise full command | ||
| 67 | echo-cmd = $(if $($(quiet)cmd_$(1)), \ | ||
| 68 | echo ' $(subst ','\'',$($(quiet)cmd_$(1)))';) | ||
| 69 | |||
| 70 | # function to only execute the passed command if necessary | ||
| 71 | # >'< substitution is for echo to work, >$< substitution to preserve $ when reloading .cmd file | ||
| 72 | # note: when using inline perl scripts [perl -e '...$$t=1;...'] in $(cmd_xxx) double $$ your perl vars | ||
| 73 | # | ||
| 74 | if_changed = $(if $(strip $? $(call arg-check, $(cmd_$(1)), $(cmd_$@)) ), \ | ||
| 75 | @set -e; \ | ||
| 76 | $(echo-cmd) \ | ||
| 77 | $(cmd_$(1)); \ | ||
| 78 | echo 'cmd_$@ := $(subst $$,$$$$,$(subst ','\'',$(cmd_$(1))))' > $(@D)/.$(@F).cmd) | ||
| 79 | |||
| 80 | # execute the command and also postprocess generated .d dependencies | ||
| 81 | # file | ||
| 82 | if_changed_dep = $(if $(strip $? $(filter-out FORCE $(wildcard $^),$^)\ | ||
| 83 | $(call arg-check, $(cmd_$(1)), $(cmd_$@)) ), \ | ||
| 84 | @set -e; \ | ||
| 85 | $(echo-cmd) \ | ||
| 86 | $(cmd_$(1)); \ | ||
| 87 | scripts/basic/fixdep $(depfile) $@ '$(subst $$,$$$$,$(subst ','\'',$(cmd_$(1))))' > $(@D)/.$(@F).tmp; \ | ||
| 88 | rm -f $(depfile); \ | ||
| 89 | mv -f $(@D)/.$(@F).tmp $(@D)/.$(@F).cmd) | ||
| 90 | |||
| 91 | # Usage: $(call if_changed_rule,foo) | ||
| 92 | # will check if $(cmd_foo) changed, or any of the prequisites changed, | ||
| 93 | # and if so will execute $(rule_foo) | ||
| 94 | if_changed_rule = $(if $(strip $? $(call arg-check, $(cmd_$(1)), $(cmd_$@)) ),\ | ||
| 95 | @set -e; \ | ||
| 96 | $(rule_$(1))) | ||
diff --git a/scripts/Makefile.build b/scripts/Makefile.build index 76ba6be3dfc9..506e3f3befe3 100644 --- a/scripts/Makefile.build +++ b/scripts/Makefile.build | |||
| @@ -10,8 +10,11 @@ __build: | |||
| 10 | # Read .config if it exist, otherwise ignore | 10 | # Read .config if it exist, otherwise ignore |
| 11 | -include .config | 11 | -include .config |
| 12 | 12 | ||
| 13 | include $(if $(wildcard $(obj)/Kbuild), $(obj)/Kbuild, $(obj)/Makefile) | 13 | # The filename Kbuild has precedence over Makefile |
| 14 | kbuild-dir := $(if $(filter /%,$(src)),$(src),$(srctree)/$(src)) | ||
| 15 | include $(if $(wildcard $(kbuild-dir)/Kbuild), $(kbuild-dir)/Kbuild, $(kbuild-dir)/Makefile) | ||
| 14 | 16 | ||
| 17 | include scripts/Kbuild.include | ||
| 15 | include scripts/Makefile.lib | 18 | include scripts/Makefile.lib |
| 16 | 19 | ||
| 17 | ifdef host-progs | 20 | ifdef host-progs |
| @@ -169,7 +172,7 @@ cmd_modversions = \ | |||
| 169 | -T $(@D)/.tmp_$(@F:.o=.ver); \ | 172 | -T $(@D)/.tmp_$(@F:.o=.ver); \ |
| 170 | rm -f $(@D)/.tmp_$(@F) $(@D)/.tmp_$(@F:.o=.ver); \ | 173 | rm -f $(@D)/.tmp_$(@F) $(@D)/.tmp_$(@F:.o=.ver); \ |
| 171 | else \ | 174 | else \ |
| 172 | mv $(@D)/.tmp_$(@F) $@; \ | 175 | mv -f $(@D)/.tmp_$(@F) $@; \ |
| 173 | fi; | 176 | fi; |
| 174 | endif | 177 | endif |
| 175 | 178 | ||
diff --git a/scripts/Makefile.clean b/scripts/Makefile.clean index ff3e87dbf387..8974ea5fc878 100644 --- a/scripts/Makefile.clean +++ b/scripts/Makefile.clean | |||
| @@ -7,7 +7,14 @@ src := $(obj) | |||
| 7 | .PHONY: __clean | 7 | .PHONY: __clean |
| 8 | __clean: | 8 | __clean: |
| 9 | 9 | ||
| 10 | include $(if $(wildcard $(obj)/Kbuild), $(obj)/Kbuild, $(obj)/Makefile) | 10 | # Shorthand for $(Q)$(MAKE) scripts/Makefile.clean obj=dir |
| 11 | # Usage: | ||
| 12 | # $(Q)$(MAKE) $(clean)=dir | ||
| 13 | clean := -f $(if $(KBUILD_SRC),$(srctree)/)scripts/Makefile.clean obj | ||
| 14 | |||
| 15 | # The filename Kbuild has precedence over Makefile | ||
| 16 | kbuild-dir := $(if $(filter /%,$(src)),$(src),$(srctree)/$(src)) | ||
| 17 | include $(if $(wildcard $(kbuild-dir)/Kbuild), $(kbuild-dir)/Kbuild, $(kbuild-dir)/Makefile) | ||
| 11 | 18 | ||
| 12 | # Figure out what we need to build from the various variables | 19 | # Figure out what we need to build from the various variables |
| 13 | # ========================================================================== | 20 | # ========================================================================== |
| @@ -87,8 +94,3 @@ $(subdir-ymn): | |||
| 87 | # If quiet is set, only print short version of command | 94 | # If quiet is set, only print short version of command |
| 88 | 95 | ||
| 89 | cmd = @$(if $($(quiet)cmd_$(1)),echo ' $($(quiet)cmd_$(1))' &&) $(cmd_$(1)) | 96 | cmd = @$(if $($(quiet)cmd_$(1)),echo ' $($(quiet)cmd_$(1))' &&) $(cmd_$(1)) |
| 90 | |||
| 91 | # Shorthand for $(Q)$(MAKE) scripts/Makefile.clean obj=dir | ||
| 92 | # Usage: | ||
| 93 | # $(Q)$(MAKE) $(clean)=dir | ||
| 94 | clean := -f $(if $(KBUILD_SRC),$(srctree)/)scripts/Makefile.clean obj | ||
diff --git a/scripts/Makefile.host b/scripts/Makefile.host index 2821a2b83bbb..2d519704b8fd 100644 --- a/scripts/Makefile.host +++ b/scripts/Makefile.host | |||
| @@ -98,7 +98,8 @@ hostcxx_flags = -Wp,-MD,$(depfile) $(__hostcxx_flags) | |||
| 98 | # Create executable from a single .c file | 98 | # Create executable from a single .c file |
| 99 | # host-csingle -> Executable | 99 | # host-csingle -> Executable |
| 100 | quiet_cmd_host-csingle = HOSTCC $@ | 100 | quiet_cmd_host-csingle = HOSTCC $@ |
| 101 | cmd_host-csingle = $(HOSTCC) $(hostc_flags) $(HOST_LOADLIBES) -o $@ $< | 101 | cmd_host-csingle = $(HOSTCC) $(hostc_flags) -o $@ $< \ |
| 102 | $(HOST_LOADLIBES) $(HOSTLOADLIBES_$(@F)) | ||
| 102 | $(host-csingle): %: %.c FORCE | 103 | $(host-csingle): %: %.c FORCE |
| 103 | $(call if_changed_dep,host-csingle) | 104 | $(call if_changed_dep,host-csingle) |
| 104 | 105 | ||
diff --git a/scripts/Makefile.lib b/scripts/Makefile.lib index 7cf75cc4f849..0f81dcfd6909 100644 --- a/scripts/Makefile.lib +++ b/scripts/Makefile.lib | |||
| @@ -1,13 +1,3 @@ | |||
| 1 | # =========================================================================== | ||
| 2 | # kbuild: Generic definitions | ||
| 3 | # =========================================================================== | ||
| 4 | |||
| 5 | # Standard vars | ||
| 6 | |||
| 7 | comma := , | ||
| 8 | empty := | ||
| 9 | space := $(empty) $(empty) | ||
| 10 | |||
| 11 | # Backward compatibility - to be removed... | 1 | # Backward compatibility - to be removed... |
| 12 | extra-y += $(EXTRA_TARGETS) | 2 | extra-y += $(EXTRA_TARGETS) |
| 13 | # Figure out what we need to build from the various variables | 3 | # Figure out what we need to build from the various variables |
| @@ -84,10 +74,6 @@ multi-objs-m := $(addprefix $(obj)/,$(multi-objs-m)) | |||
| 84 | subdir-ym := $(addprefix $(obj)/,$(subdir-ym)) | 74 | subdir-ym := $(addprefix $(obj)/,$(subdir-ym)) |
| 85 | obj-dirs := $(addprefix $(obj)/,$(obj-dirs)) | 75 | obj-dirs := $(addprefix $(obj)/,$(obj-dirs)) |
| 86 | 76 | ||
| 87 | # The temporary file to save gcc -MD generated dependencies must not | ||
| 88 | # contain a comma | ||
| 89 | depfile = $(subst $(comma),_,$(@D)/.$(@F).d) | ||
| 90 | |||
| 91 | # These flags are needed for modversions and compiling, so we define them here | 77 | # These flags are needed for modversions and compiling, so we define them here |
| 92 | # already | 78 | # already |
| 93 | # $(modname_flags) #defines KBUILD_MODNAME as the name of the module it will | 79 | # $(modname_flags) #defines KBUILD_MODNAME as the name of the module it will |
| @@ -179,89 +165,4 @@ cmd_objcopy = $(OBJCOPY) $(OBJCOPYFLAGS) $(OBJCOPYFLAGS_$(@F)) $< $@ | |||
| 179 | quiet_cmd_gzip = GZIP $@ | 165 | quiet_cmd_gzip = GZIP $@ |
| 180 | cmd_gzip = gzip -f -9 < $< > $@ | 166 | cmd_gzip = gzip -f -9 < $< > $@ |
| 181 | 167 | ||
| 182 | # =========================================================================== | ||
| 183 | # Generic stuff | ||
| 184 | # =========================================================================== | ||
| 185 | |||
| 186 | ifneq ($(KBUILD_NOCMDDEP),1) | ||
| 187 | # Check if both arguments has same arguments. Result in empty string if equal | ||
| 188 | # User may override this check using make KBUILD_NOCMDDEP=1 | ||
| 189 | arg-check = $(strip $(filter-out $(1), $(2)) $(filter-out $(2), $(1)) ) | ||
| 190 | |||
| 191 | endif | ||
| 192 | |||
| 193 | # echo command. Short version is $(quiet) equals quiet, otherwise full command | ||
| 194 | echo-cmd = $(if $($(quiet)cmd_$(1)), \ | ||
| 195 | echo ' $(subst ','\'',$($(quiet)cmd_$(1)))';) | ||
| 196 | |||
| 197 | # function to only execute the passed command if necessary | ||
| 198 | # >'< substitution is for echo to work, >$< substitution to preserve $ when reloading .cmd file | ||
| 199 | # note: when using inline perl scripts [perl -e '...$$t=1;...'] in $(cmd_xxx) double $$ your perl vars | ||
| 200 | # | ||
| 201 | if_changed = $(if $(strip $? $(call arg-check, $(cmd_$(1)), $(cmd_$@)) ), \ | ||
| 202 | @set -e; \ | ||
| 203 | $(echo-cmd) \ | ||
| 204 | $(cmd_$(1)); \ | ||
| 205 | echo 'cmd_$@ := $(subst $$,$$$$,$(subst ','\'',$(cmd_$(1))))' > $(@D)/.$(@F).cmd) | ||
| 206 | |||
| 207 | |||
| 208 | # execute the command and also postprocess generated .d dependencies | ||
| 209 | # file | ||
| 210 | |||
| 211 | if_changed_dep = $(if $(strip $? $(filter-out FORCE $(wildcard $^),$^)\ | ||
| 212 | $(call arg-check, $(cmd_$(1)), $(cmd_$@)) ), \ | ||
| 213 | @set -e; \ | ||
| 214 | $(echo-cmd) \ | ||
| 215 | $(cmd_$(1)); \ | ||
| 216 | scripts/basic/fixdep $(depfile) $@ '$(subst $$,$$$$,$(subst ','\'',$(cmd_$(1))))' > $(@D)/.$(@F).tmp; \ | ||
| 217 | rm -f $(depfile); \ | ||
| 218 | mv -f $(@D)/.$(@F).tmp $(@D)/.$(@F).cmd) | ||
| 219 | |||
| 220 | # Usage: $(call if_changed_rule,foo) | ||
| 221 | # will check if $(cmd_foo) changed, or any of the prequisites changed, | ||
| 222 | # and if so will execute $(rule_foo) | ||
| 223 | |||
| 224 | if_changed_rule = $(if $(strip $? $(call arg-check, $(cmd_$(1)), $(cmd_$@)) ),\ | ||
| 225 | @set -e; \ | ||
| 226 | $(rule_$(1))) | ||
| 227 | |||
| 228 | # If quiet is set, only print short version of command | ||
| 229 | |||
| 230 | cmd = @$(if $($(quiet)cmd_$(1)),echo ' $(subst ','\'',$($(quiet)cmd_$(1)))' &&) $(cmd_$(1)) | ||
| 231 | |||
| 232 | # $(call descend,<dir>,<target>) | ||
| 233 | # Recursively call a sub-make in <dir> with target <target> | ||
| 234 | # Usage is deprecated, because make do not see this as an invocation of make. | ||
| 235 | descend =$(Q)$(MAKE) -f $(if $(KBUILD_SRC),$(srctree)/)scripts/Makefile.build obj=$(1) $(2) | ||
| 236 | |||
| 237 | # Shorthand for $(Q)$(MAKE) -f scripts/Makefile.build obj= | ||
| 238 | # Usage: | ||
| 239 | # $(Q)$(MAKE) $(build)=dir | ||
| 240 | build := -f $(if $(KBUILD_SRC),$(srctree)/)scripts/Makefile.build obj | ||
| 241 | |||
| 242 | # filechk is used to check if the content of a generated file is updated. | ||
| 243 | # Sample usage: | ||
| 244 | # define filechk_sample | ||
| 245 | # echo $KERNELRELEASE | ||
| 246 | # endef | ||
| 247 | # version.h : Makefile | ||
| 248 | # $(call filechk,sample) | ||
| 249 | # The rule defined shall write to stdout the content of the new file. | ||
| 250 | # The existing file will be compared with the new one. | ||
| 251 | # - If no file exist it is created | ||
| 252 | # - If the content differ the new file is used | ||
| 253 | # - If they are equal no change, and no timestamp update | ||
| 254 | |||
| 255 | define filechk | ||
| 256 | $(Q)set -e; \ | ||
| 257 | echo ' CHK $@'; \ | ||
| 258 | mkdir -p $(dir $@); \ | ||
| 259 | $(filechk_$(1)) $(2) > $@.tmp; \ | ||
| 260 | if [ -r $@ ] && cmp -s $@ $@.tmp; then \ | ||
| 261 | rm -f $@.tmp; \ | ||
| 262 | else \ | ||
| 263 | echo ' UPD $@'; \ | ||
| 264 | mv -f $@.tmp $@; \ | ||
| 265 | fi | ||
| 266 | endef | ||
| 267 | 168 | ||
diff --git a/scripts/Makefile.modinst b/scripts/Makefile.modinst index 85d6494e3c24..23fd1bdc25ce 100644 --- a/scripts/Makefile.modinst +++ b/scripts/Makefile.modinst | |||
| @@ -5,7 +5,7 @@ | |||
| 5 | .PHONY: __modinst | 5 | .PHONY: __modinst |
| 6 | __modinst: | 6 | __modinst: |
| 7 | 7 | ||
| 8 | include scripts/Makefile.lib | 8 | include scripts/Kbuild.include |
| 9 | 9 | ||
| 10 | # | 10 | # |
| 11 | 11 | ||
diff --git a/scripts/Makefile.modpost b/scripts/Makefile.modpost index 94b550e21be8..0c4f3a9f2ea9 100644 --- a/scripts/Makefile.modpost +++ b/scripts/Makefile.modpost | |||
| @@ -36,6 +36,7 @@ | |||
| 36 | _modpost: __modpost | 36 | _modpost: __modpost |
| 37 | 37 | ||
| 38 | include .config | 38 | include .config |
| 39 | include scripts/Kbuild.include | ||
| 39 | include scripts/Makefile.lib | 40 | include scripts/Makefile.lib |
| 40 | 41 | ||
| 41 | symverfile := $(objtree)/Module.symvers | 42 | symverfile := $(objtree)/Module.symvers |
diff --git a/scripts/conmakehash.c b/scripts/conmakehash.c index 93dd23f21ec9..e0c6891a9ad4 100644 --- a/scripts/conmakehash.c +++ b/scripts/conmakehash.c | |||
| @@ -33,7 +33,7 @@ void usage(char *argv0) | |||
| 33 | 33 | ||
| 34 | int getunicode(char **p0) | 34 | int getunicode(char **p0) |
| 35 | { | 35 | { |
| 36 | unsigned char *p = *p0; | 36 | char *p = *p0; |
| 37 | 37 | ||
| 38 | while (*p == ' ' || *p == '\t') | 38 | while (*p == ' ' || *p == '\t') |
| 39 | p++; | 39 | p++; |
diff --git a/scripts/kallsyms.c b/scripts/kallsyms.c index d3d2e5341051..9be41a9f5aff 100644 --- a/scripts/kallsyms.c +++ b/scripts/kallsyms.c | |||
| @@ -207,9 +207,9 @@ symbol_valid(struct sym_entry *s) | |||
| 207 | * move then they may get dropped in pass 2, which breaks the | 207 | * move then they may get dropped in pass 2, which breaks the |
| 208 | * kallsyms rules. | 208 | * kallsyms rules. |
| 209 | */ | 209 | */ |
| 210 | if ((s->addr == _etext && strcmp(s->sym + offset, "_etext")) || | 210 | if ((s->addr == _etext && strcmp((char*)s->sym + offset, "_etext")) || |
| 211 | (s->addr == _einittext && strcmp(s->sym + offset, "_einittext")) || | 211 | (s->addr == _einittext && strcmp((char*)s->sym + offset, "_einittext")) || |
| 212 | (s->addr == _eextratext && strcmp(s->sym + offset, "_eextratext"))) | 212 | (s->addr == _eextratext && strcmp((char*)s->sym + offset, "_eextratext"))) |
| 213 | return 0; | 213 | return 0; |
| 214 | } | 214 | } |
| 215 | 215 | ||
diff --git a/scripts/kconfig/lkc.h b/scripts/kconfig/lkc.h index 8b84c42b49b5..c3d25786a64d 100644 --- a/scripts/kconfig/lkc.h +++ b/scripts/kconfig/lkc.h | |||
| @@ -59,7 +59,7 @@ void menu_add_entry(struct symbol *sym); | |||
| 59 | void menu_end_entry(void); | 59 | void menu_end_entry(void); |
| 60 | void menu_add_dep(struct expr *dep); | 60 | void menu_add_dep(struct expr *dep); |
| 61 | struct property *menu_add_prop(enum prop_type type, char *prompt, struct expr *expr, struct expr *dep); | 61 | struct property *menu_add_prop(enum prop_type type, char *prompt, struct expr *expr, struct expr *dep); |
| 62 | void menu_add_prompt(enum prop_type type, char *prompt, struct expr *dep); | 62 | struct property *menu_add_prompt(enum prop_type type, char *prompt, struct expr *dep); |
| 63 | void menu_add_expr(enum prop_type type, struct expr *expr, struct expr *dep); | 63 | void menu_add_expr(enum prop_type type, struct expr *expr, struct expr *dep); |
| 64 | void menu_add_symbol(enum prop_type type, struct symbol *sym, struct expr *dep); | 64 | void menu_add_symbol(enum prop_type type, struct symbol *sym, struct expr *dep); |
| 65 | void menu_finalize(struct menu *parent); | 65 | void menu_finalize(struct menu *parent); |
diff --git a/scripts/kconfig/menu.c b/scripts/kconfig/menu.c index 8c59b212722d..5cfa6c405cf0 100644 --- a/scripts/kconfig/menu.c +++ b/scripts/kconfig/menu.c | |||
| @@ -136,9 +136,9 @@ struct property *menu_add_prop(enum prop_type type, char *prompt, struct expr *e | |||
| 136 | return prop; | 136 | return prop; |
| 137 | } | 137 | } |
| 138 | 138 | ||
| 139 | void menu_add_prompt(enum prop_type type, char *prompt, struct expr *dep) | 139 | struct property *menu_add_prompt(enum prop_type type, char *prompt, struct expr *dep) |
| 140 | { | 140 | { |
| 141 | menu_add_prop(type, prompt, NULL, dep); | 141 | return menu_add_prop(type, prompt, NULL, dep); |
| 142 | } | 142 | } |
| 143 | 143 | ||
| 144 | void menu_add_expr(enum prop_type type, struct expr *expr, struct expr *dep) | 144 | void menu_add_expr(enum prop_type type, struct expr *expr, struct expr *dep) |
diff --git a/scripts/kconfig/zconf.tab.c_shipped b/scripts/kconfig/zconf.tab.c_shipped index f163d8d2d9ef..ff4fcc09720e 100644 --- a/scripts/kconfig/zconf.tab.c_shipped +++ b/scripts/kconfig/zconf.tab.c_shipped | |||
| @@ -1531,7 +1531,7 @@ yyreduce: | |||
| 1531 | 1531 | ||
| 1532 | { | 1532 | { |
| 1533 | menu_add_entry(NULL); | 1533 | menu_add_entry(NULL); |
| 1534 | menu_add_prop(P_MENU, yyvsp[-1].string, NULL, NULL); | 1534 | menu_add_prompt(P_MENU, yyvsp[-1].string, NULL); |
| 1535 | printd(DEBUG_PARSE, "%s:%d:menu\n", zconf_curname(), zconf_lineno()); | 1535 | printd(DEBUG_PARSE, "%s:%d:menu\n", zconf_curname(), zconf_lineno()); |
| 1536 | ;} | 1536 | ;} |
| 1537 | break; | 1537 | break; |
| @@ -1586,7 +1586,7 @@ yyreduce: | |||
| 1586 | 1586 | ||
| 1587 | { | 1587 | { |
| 1588 | menu_add_entry(NULL); | 1588 | menu_add_entry(NULL); |
| 1589 | menu_add_prop(P_COMMENT, yyvsp[-1].string, NULL, NULL); | 1589 | menu_add_prompt(P_COMMENT, yyvsp[-1].string, NULL); |
| 1590 | printd(DEBUG_PARSE, "%s:%d:comment\n", zconf_curname(), zconf_lineno()); | 1590 | printd(DEBUG_PARSE, "%s:%d:comment\n", zconf_curname(), zconf_lineno()); |
| 1591 | ;} | 1591 | ;} |
| 1592 | break; | 1592 | break; |
| @@ -1640,7 +1640,7 @@ yyreduce: | |||
| 1640 | case 86: | 1640 | case 86: |
| 1641 | 1641 | ||
| 1642 | { | 1642 | { |
| 1643 | menu_add_prop(P_PROMPT, yyvsp[-1].string, NULL, yyvsp[0].expr); | 1643 | menu_add_prompt(P_PROMPT, yyvsp[-1].string, yyvsp[0].expr); |
| 1644 | ;} | 1644 | ;} |
| 1645 | break; | 1645 | break; |
| 1646 | 1646 | ||
| @@ -1925,7 +1925,7 @@ void conf_parse(const char *name) | |||
| 1925 | sym_init(); | 1925 | sym_init(); |
| 1926 | menu_init(); | 1926 | menu_init(); |
| 1927 | modules_sym = sym_lookup("MODULES", 0); | 1927 | modules_sym = sym_lookup("MODULES", 0); |
| 1928 | rootmenu.prompt = menu_add_prop(P_MENU, "Linux Kernel Configuration", NULL, NULL); | 1928 | rootmenu.prompt = menu_add_prompt(P_MENU, "Linux Kernel Configuration", NULL); |
| 1929 | 1929 | ||
| 1930 | //zconfdebug = 1; | 1930 | //zconfdebug = 1; |
| 1931 | zconfparse(); | 1931 | zconfparse(); |
diff --git a/scripts/kconfig/zconf.y b/scripts/kconfig/zconf.y index 54460f8d3696..e1a0f455d4a8 100644 --- a/scripts/kconfig/zconf.y +++ b/scripts/kconfig/zconf.y | |||
| @@ -342,7 +342,7 @@ if_block: | |||
| 342 | menu: T_MENU prompt T_EOL | 342 | menu: T_MENU prompt T_EOL |
| 343 | { | 343 | { |
| 344 | menu_add_entry(NULL); | 344 | menu_add_entry(NULL); |
| 345 | menu_add_prop(P_MENU, $2, NULL, NULL); | 345 | menu_add_prompt(P_MENU, $2, NULL); |
| 346 | printd(DEBUG_PARSE, "%s:%d:menu\n", zconf_curname(), zconf_lineno()); | 346 | printd(DEBUG_PARSE, "%s:%d:menu\n", zconf_curname(), zconf_lineno()); |
| 347 | }; | 347 | }; |
| 348 | 348 | ||
| @@ -392,7 +392,7 @@ source_stmt: source | |||
| 392 | comment: T_COMMENT prompt T_EOL | 392 | comment: T_COMMENT prompt T_EOL |
| 393 | { | 393 | { |
| 394 | menu_add_entry(NULL); | 394 | menu_add_entry(NULL); |
| 395 | menu_add_prop(P_COMMENT, $2, NULL, NULL); | 395 | menu_add_prompt(P_COMMENT, $2, NULL); |
| 396 | printd(DEBUG_PARSE, "%s:%d:comment\n", zconf_curname(), zconf_lineno()); | 396 | printd(DEBUG_PARSE, "%s:%d:comment\n", zconf_curname(), zconf_lineno()); |
| 397 | }; | 397 | }; |
| 398 | 398 | ||
| @@ -443,7 +443,7 @@ prompt_stmt_opt: | |||
| 443 | /* empty */ | 443 | /* empty */ |
| 444 | | prompt if_expr | 444 | | prompt if_expr |
| 445 | { | 445 | { |
| 446 | menu_add_prop(P_PROMPT, $1, NULL, $2); | 446 | menu_add_prompt(P_PROMPT, $1, $2); |
| 447 | }; | 447 | }; |
| 448 | 448 | ||
| 449 | prompt: T_WORD | 449 | prompt: T_WORD |
| @@ -487,7 +487,7 @@ void conf_parse(const char *name) | |||
| 487 | sym_init(); | 487 | sym_init(); |
| 488 | menu_init(); | 488 | menu_init(); |
| 489 | modules_sym = sym_lookup("MODULES", 0); | 489 | modules_sym = sym_lookup("MODULES", 0); |
| 490 | rootmenu.prompt = menu_add_prop(P_MENU, "Linux Kernel Configuration", NULL, NULL); | 490 | rootmenu.prompt = menu_add_prompt(P_MENU, "Linux Kernel Configuration", NULL); |
| 491 | 491 | ||
| 492 | //zconfdebug = 1; | 492 | //zconfdebug = 1; |
| 493 | zconfparse(); | 493 | zconfparse(); |
diff --git a/scripts/kernel-doc b/scripts/kernel-doc index 0835dc2a8aa9..8aaf74e64183 100755 --- a/scripts/kernel-doc +++ b/scripts/kernel-doc | |||
| @@ -1665,11 +1665,17 @@ sub xml_escape($) { | |||
| 1665 | } | 1665 | } |
| 1666 | 1666 | ||
| 1667 | sub process_file($) { | 1667 | sub process_file($) { |
| 1668 | my ($file) = "$ENV{'SRCTREE'}@_"; | 1668 | my $file; |
| 1669 | my $identifier; | 1669 | my $identifier; |
| 1670 | my $func; | 1670 | my $func; |
| 1671 | my $initial_section_counter = $section_counter; | 1671 | my $initial_section_counter = $section_counter; |
| 1672 | 1672 | ||
| 1673 | if (defined($ENV{'SRCTREE'})) { | ||
| 1674 | $file = "$ENV{'SRCTREE'}" . "/" . "@_"; | ||
| 1675 | } | ||
| 1676 | else { | ||
| 1677 | $file = "@_"; | ||
| 1678 | } | ||
| 1673 | if (defined($source_map{$file})) { | 1679 | if (defined($source_map{$file})) { |
| 1674 | $file = $source_map{$file}; | 1680 | $file = $source_map{$file}; |
| 1675 | } | 1681 | } |
diff --git a/scripts/lxdialog/dialog.h b/scripts/lxdialog/dialog.h index c571548daa82..eb63e1bb63a3 100644 --- a/scripts/lxdialog/dialog.h +++ b/scripts/lxdialog/dialog.h | |||
| @@ -163,7 +163,7 @@ int dialog_menu (const char *title, const char *prompt, int height, int width, | |||
| 163 | int dialog_checklist (const char *title, const char *prompt, int height, | 163 | int dialog_checklist (const char *title, const char *prompt, int height, |
| 164 | int width, int list_height, int item_no, | 164 | int width, int list_height, int item_no, |
| 165 | const char * const * items, int flag); | 165 | const char * const * items, int flag); |
| 166 | extern unsigned char dialog_input_result[]; | 166 | extern char dialog_input_result[]; |
| 167 | int dialog_inputbox (const char *title, const char *prompt, int height, | 167 | int dialog_inputbox (const char *title, const char *prompt, int height, |
| 168 | int width, const char *init); | 168 | int width, const char *init); |
| 169 | 169 | ||
diff --git a/scripts/lxdialog/inputbox.c b/scripts/lxdialog/inputbox.c index fa7bebc693b9..074d2d68bd31 100644 --- a/scripts/lxdialog/inputbox.c +++ b/scripts/lxdialog/inputbox.c | |||
| @@ -21,7 +21,7 @@ | |||
| 21 | 21 | ||
| 22 | #include "dialog.h" | 22 | #include "dialog.h" |
| 23 | 23 | ||
| 24 | unsigned char dialog_input_result[MAX_LEN + 1]; | 24 | char dialog_input_result[MAX_LEN + 1]; |
| 25 | 25 | ||
| 26 | /* | 26 | /* |
| 27 | * Print the termination buttons | 27 | * Print the termination buttons |
| @@ -48,7 +48,7 @@ dialog_inputbox (const char *title, const char *prompt, int height, int width, | |||
| 48 | { | 48 | { |
| 49 | int i, x, y, box_y, box_x, box_width; | 49 | int i, x, y, box_y, box_x, box_width; |
| 50 | int input_x = 0, scroll = 0, key = 0, button = -1; | 50 | int input_x = 0, scroll = 0, key = 0, button = -1; |
| 51 | unsigned char *instr = dialog_input_result; | 51 | char *instr = dialog_input_result; |
| 52 | WINDOW *dialog; | 52 | WINDOW *dialog; |
| 53 | 53 | ||
| 54 | /* center dialog box on screen */ | 54 | /* center dialog box on screen */ |
diff --git a/scripts/mkcompile_h b/scripts/mkcompile_h index 8d118d181950..d7b8a384b4a7 100755 --- a/scripts/mkcompile_h +++ b/scripts/mkcompile_h | |||
| @@ -1,7 +1,8 @@ | |||
| 1 | TARGET=$1 | 1 | TARGET=$1 |
| 2 | ARCH=$2 | 2 | ARCH=$2 |
| 3 | SMP=$3 | 3 | SMP=$3 |
| 4 | CC=$4 | 4 | PREEMPT=$4 |
| 5 | CC=$5 | ||
| 5 | 6 | ||
| 6 | # If compile.h exists already and we don't own autoconf.h | 7 | # If compile.h exists already and we don't own autoconf.h |
| 7 | # (i.e. we're not the same user who did make *config), don't | 8 | # (i.e. we're not the same user who did make *config), don't |
| @@ -26,8 +27,10 @@ fi | |||
| 26 | 27 | ||
| 27 | 28 | ||
| 28 | UTS_VERSION="#$VERSION" | 29 | UTS_VERSION="#$VERSION" |
| 29 | if [ -n "$SMP" ] ; then UTS_VERSION="$UTS_VERSION SMP"; fi | 30 | CONFIG_FLAGS="" |
| 30 | UTS_VERSION="$UTS_VERSION `LC_ALL=C LANG=C date`" | 31 | if [ -n "$SMP" ] ; then CONFIG_FLAGS="SMP"; fi |
| 32 | if [ -n "$PREEMPT" ] ; then CONFIG_FLAGS="$CONFIG_FLAGS PREEMPT"; fi | ||
| 33 | UTS_VERSION="$UTS_VERSION $CONFIG_FLAGS `LC_ALL=C LANG=C date`" | ||
| 31 | 34 | ||
| 32 | # Truncate to maximum length | 35 | # Truncate to maximum length |
| 33 | 36 | ||
| @@ -37,7 +40,8 @@ UTS_TRUNCATE="sed -e s/\(.\{1,$UTS_LEN\}\).*/\1/" | |||
| 37 | # Generate a temporary compile.h | 40 | # Generate a temporary compile.h |
| 38 | 41 | ||
| 39 | ( echo /\* This file is auto generated, version $VERSION \*/ | 42 | ( echo /\* This file is auto generated, version $VERSION \*/ |
| 40 | 43 | if [ -n "$CONFIG_FLAGS" ] ; then echo "/* $CONFIG_FLAGS */"; fi | |
| 44 | |||
| 41 | echo \#define UTS_MACHINE \"$ARCH\" | 45 | echo \#define UTS_MACHINE \"$ARCH\" |
| 42 | 46 | ||
| 43 | echo \#define UTS_VERSION \"`echo $UTS_VERSION | $UTS_TRUNCATE`\" | 47 | echo \#define UTS_VERSION \"`echo $UTS_VERSION | $UTS_TRUNCATE`\" |
diff --git a/scripts/mod/sumversion.c b/scripts/mod/sumversion.c index 1112347245c0..43271a1ca01e 100644 --- a/scripts/mod/sumversion.c +++ b/scripts/mod/sumversion.c | |||
| @@ -252,9 +252,9 @@ static int parse_comment(const char *file, unsigned long len) | |||
| 252 | } | 252 | } |
| 253 | 253 | ||
| 254 | /* FIXME: Handle .s files differently (eg. # starts comments) --RR */ | 254 | /* FIXME: Handle .s files differently (eg. # starts comments) --RR */ |
| 255 | static int parse_file(const signed char *fname, struct md4_ctx *md) | 255 | static int parse_file(const char *fname, struct md4_ctx *md) |
| 256 | { | 256 | { |
| 257 | signed char *file; | 257 | char *file; |
| 258 | unsigned long i, len; | 258 | unsigned long i, len; |
| 259 | 259 | ||
| 260 | file = grab_file(fname, &len); | 260 | file = grab_file(fname, &len); |
| @@ -332,7 +332,7 @@ static int parse_source_files(const char *objfile, struct md4_ctx *md) | |||
| 332 | Sum all files in the same dir or subdirs. | 332 | Sum all files in the same dir or subdirs. |
| 333 | */ | 333 | */ |
| 334 | while ((line = get_next_line(&pos, file, flen)) != NULL) { | 334 | while ((line = get_next_line(&pos, file, flen)) != NULL) { |
| 335 | signed char* p = line; | 335 | char* p = line; |
| 336 | if (strncmp(line, "deps_", sizeof("deps_")-1) == 0) { | 336 | if (strncmp(line, "deps_", sizeof("deps_")-1) == 0) { |
| 337 | check_files = 1; | 337 | check_files = 1; |
| 338 | continue; | 338 | continue; |
| @@ -458,7 +458,7 @@ out: | |||
| 458 | close(fd); | 458 | close(fd); |
| 459 | } | 459 | } |
| 460 | 460 | ||
| 461 | static int strip_rcs_crap(signed char *version) | 461 | static int strip_rcs_crap(char *version) |
| 462 | { | 462 | { |
| 463 | unsigned int len, full_len; | 463 | unsigned int len, full_len; |
| 464 | 464 | ||
diff --git a/scripts/package/Makefile b/scripts/package/Makefile index 3b1f2eff2584..f3e7e8e4a500 100644 --- a/scripts/package/Makefile +++ b/scripts/package/Makefile | |||
| @@ -59,7 +59,7 @@ $(objtree)/binkernel.spec: $(MKSPEC) $(srctree)/Makefile | |||
| 59 | $(CONFIG_SHELL) $(MKSPEC) prebuilt > $@ | 59 | $(CONFIG_SHELL) $(MKSPEC) prebuilt > $@ |
| 60 | 60 | ||
| 61 | binrpm-pkg: $(objtree)/binkernel.spec | 61 | binrpm-pkg: $(objtree)/binkernel.spec |
| 62 | $(MAKE) | 62 | $(MAKE) KBUILD_SRC= |
| 63 | set -e; \ | 63 | set -e; \ |
| 64 | $(CONFIG_SHELL) $(srctree)/scripts/mkversion > $(objtree)/.tmp_version | 64 | $(CONFIG_SHELL) $(srctree)/scripts/mkversion > $(objtree)/.tmp_version |
| 65 | set -e; \ | 65 | set -e; \ |
| @@ -74,16 +74,30 @@ clean-files += $(objtree)/binkernel.spec | |||
| 74 | # | 74 | # |
| 75 | .PHONY: deb-pkg | 75 | .PHONY: deb-pkg |
| 76 | deb-pkg: | 76 | deb-pkg: |
| 77 | $(MAKE) | 77 | $(MAKE) KBUILD_SRC= |
| 78 | $(CONFIG_SHELL) $(srctree)/scripts/package/builddeb | 78 | $(CONFIG_SHELL) $(srctree)/scripts/package/builddeb |
| 79 | 79 | ||
| 80 | clean-dirs += $(objtree)/debian/ | 80 | clean-dirs += $(objtree)/debian/ |
| 81 | 81 | ||
| 82 | 82 | ||
| 83 | # tarball targets | ||
| 84 | # --------------------------------------------------------------------------- | ||
| 85 | .PHONY: tar%pkg | ||
| 86 | tar%pkg: | ||
| 87 | $(MAKE) | ||
| 88 | $(CONFIG_SHELL) $(srctree)/scripts/package/buildtar $@ | ||
| 89 | |||
| 90 | clean-dirs += $(objtree)/tar-install/ | ||
| 91 | |||
| 92 | |||
| 83 | # Help text displayed when executing 'make help' | 93 | # Help text displayed when executing 'make help' |
| 84 | # --------------------------------------------------------------------------- | 94 | # --------------------------------------------------------------------------- |
| 85 | help: | 95 | help: |
| 86 | @echo ' rpm-pkg - Build the kernel as an RPM package' | 96 | @echo ' rpm-pkg - Build the kernel as an RPM package' |
| 87 | @echo ' binrpm-pkg - Build an rpm package containing the compiled kernel & modules' | 97 | @echo ' binrpm-pkg - Build an rpm package containing the compiled kernel' |
| 88 | @echo ' deb-pkg - Build the kernel as an deb package' | 98 | @echo ' and modules' |
| 99 | @echo ' deb-pkg - Build the kernel as an deb package' | ||
| 100 | @echo ' tar-pkg - Build the kernel as an uncompressed tarball' | ||
| 101 | @echo ' targz-pkg - Build the kernel as a gzip compressed tarball' | ||
| 102 | @echo ' tarbz2-pkg - Build the kernel as a bzip2 compressed tarball' | ||
| 89 | 103 | ||
diff --git a/scripts/package/builddeb b/scripts/package/builddeb index c279b6310f02..6edb29f2b4a6 100644 --- a/scripts/package/builddeb +++ b/scripts/package/builddeb | |||
| @@ -14,18 +14,38 @@ set -e | |||
| 14 | # Some variables and settings used throughout the script | 14 | # Some variables and settings used throughout the script |
| 15 | version=$KERNELRELEASE | 15 | version=$KERNELRELEASE |
| 16 | tmpdir="$objtree/debian/tmp" | 16 | tmpdir="$objtree/debian/tmp" |
| 17 | packagename=linux-$version | ||
| 18 | |||
| 19 | if [ "$ARCH" == "um" ] ; then | ||
| 20 | packagename=user-mode-linux-$version | ||
| 21 | fi | ||
| 17 | 22 | ||
| 18 | # Setup the directory structure | 23 | # Setup the directory structure |
| 19 | rm -rf "$tmpdir" | 24 | rm -rf "$tmpdir" |
| 20 | mkdir -p "$tmpdir/DEBIAN" "$tmpdir/lib" "$tmpdir/boot" | 25 | mkdir -p "$tmpdir/DEBIAN" "$tmpdir/lib" "$tmpdir/boot" |
| 26 | if [ "$ARCH" == "um" ] ; then | ||
| 27 | mkdir -p "$tmpdir/usr/lib/uml/modules/$version" "$tmpdir/usr/share/doc/$packagename" "$tmpdir/usr/bin" | ||
| 28 | fi | ||
| 21 | 29 | ||
| 22 | # Build and install the kernel | 30 | # Build and install the kernel |
| 23 | cp System.map "$tmpdir/boot/System.map-$version" | 31 | if [ "$ARCH" == "um" ] ; then |
| 24 | cp .config "$tmpdir/boot/config-$version" | 32 | $MAKE linux |
| 25 | cp $KBUILD_IMAGE "$tmpdir/boot/vmlinuz-$version" | 33 | cp System.map "$tmpdir/usr/lib/uml/modules/$version/System.map" |
| 34 | cp .config "$tmpdir/usr/share/doc/$packagename/config" | ||
| 35 | gzip "$tmpdir/usr/share/doc/$packagename/config" | ||
| 36 | cp $KBUILD_IMAGE "$tmpdir/usr/bin/linux-$version" | ||
| 37 | else | ||
| 38 | cp System.map "$tmpdir/boot/System.map-$version" | ||
| 39 | cp .config "$tmpdir/boot/config-$version" | ||
| 40 | cp $KBUILD_IMAGE "$tmpdir/boot/vmlinuz-$version" | ||
| 41 | fi | ||
| 26 | 42 | ||
| 27 | if grep -q '^CONFIG_MODULES=y' .config ; then | 43 | if grep -q '^CONFIG_MODULES=y' .config ; then |
| 28 | INSTALL_MOD_PATH="$tmpdir" make modules_install | 44 | INSTALL_MOD_PATH="$tmpdir" make KBUILD_SRC= modules_install |
| 45 | if [ "$ARCH" == "um" ] ; then | ||
| 46 | mv "$tmpdir/lib/modules/$version"/* "$tmpdir/usr/lib/uml/modules/$version/" | ||
| 47 | rmdir "$tmpdir/lib/modules/$version" | ||
| 48 | fi | ||
| 29 | fi | 49 | fi |
| 30 | 50 | ||
| 31 | # Install the maintainer scripts | 51 | # Install the maintainer scripts |
| @@ -53,6 +73,8 @@ linux ($version) unstable; urgency=low | |||
| 53 | EOF | 73 | EOF |
| 54 | 74 | ||
| 55 | # Generate a control file | 75 | # Generate a control file |
| 76 | if [ "$ARCH" == "um" ]; then | ||
| 77 | |||
| 56 | cat <<EOF > debian/control | 78 | cat <<EOF > debian/control |
| 57 | Source: linux | 79 | Source: linux |
| 58 | Section: base | 80 | Section: base |
| @@ -60,12 +82,34 @@ Priority: optional | |||
| 60 | Maintainer: $name | 82 | Maintainer: $name |
| 61 | Standards-Version: 3.6.1 | 83 | Standards-Version: 3.6.1 |
| 62 | 84 | ||
| 63 | Package: linux-$version | 85 | Package: $packagename |
| 86 | Architecture: any | ||
| 87 | Description: User Mode Linux kernel, version $version | ||
| 88 | User-mode Linux is a port of the Linux kernel to its own system call | ||
| 89 | interface. It provides a kind of virtual machine, which runs Linux | ||
| 90 | as a user process under another Linux kernel. This is useful for | ||
| 91 | kernel development, sandboxes, jails, experimentation, and | ||
| 92 | many other things. | ||
| 93 | . | ||
| 94 | This package contains the Linux kernel, modules and corresponding other | ||
| 95 | files version $version | ||
| 96 | EOF | ||
| 97 | |||
| 98 | else | ||
| 99 | cat <<EOF > debian/control | ||
| 100 | Source: linux | ||
| 101 | Section: base | ||
| 102 | Priority: optional | ||
| 103 | Maintainer: $name | ||
| 104 | Standards-Version: 3.6.1 | ||
| 105 | |||
| 106 | Package: $packagename | ||
| 64 | Architecture: any | 107 | Architecture: any |
| 65 | Description: Linux kernel, version $version | 108 | Description: Linux kernel, version $version |
| 66 | This package contains the Linux kernel, modules and corresponding other | 109 | This package contains the Linux kernel, modules and corresponding other |
| 67 | files version $version. | 110 | files version $version |
| 68 | EOF | 111 | EOF |
| 112 | fi | ||
| 69 | 113 | ||
| 70 | # Fix some ownership and permissions | 114 | # Fix some ownership and permissions |
| 71 | chown -R root:root "$tmpdir" | 115 | chown -R root:root "$tmpdir" |
diff --git a/scripts/package/buildtar b/scripts/package/buildtar new file mode 100644 index 000000000000..d8fffe6f8906 --- /dev/null +++ b/scripts/package/buildtar | |||
| @@ -0,0 +1,111 @@ | |||
| 1 | #!/bin/sh | ||
| 2 | |||
| 3 | # | ||
| 4 | # buildtar 0.0.3 | ||
| 5 | # | ||
| 6 | # (C) 2004-2005 by Jan-Benedict Glaw <jbglaw@lug-owl.de> | ||
| 7 | # | ||
| 8 | # This script is used to compile a tarball from the currently | ||
| 9 | # prepared kernel. Based upon the builddeb script from | ||
| 10 | # Wichert Akkerman <wichert@wiggy.net>. | ||
| 11 | # | ||
| 12 | |||
| 13 | set -e | ||
| 14 | |||
| 15 | # | ||
| 16 | # Some variables and settings used throughout the script | ||
| 17 | # | ||
| 18 | version="${VERSION}.${PATCHLEVEL}.${SUBLEVEL}${EXTRAVERSION}${EXTRANAME}" | ||
| 19 | tmpdir="${objtree}/tar-install" | ||
| 20 | tarball="${objtree}/linux-${version}.tar" | ||
| 21 | |||
| 22 | |||
| 23 | # | ||
| 24 | # Figure out how to compress, if requested at all | ||
| 25 | # | ||
| 26 | case "${1}" in | ||
| 27 | tar-pkg) | ||
| 28 | compress="cat" | ||
| 29 | file_ext="" | ||
| 30 | ;; | ||
| 31 | targz-pkg) | ||
| 32 | compress="gzip -c9" | ||
| 33 | file_ext=".gz" | ||
| 34 | ;; | ||
| 35 | tarbz2-pkg) | ||
| 36 | compress="bzip2 -c9" | ||
| 37 | file_ext=".bz2" | ||
| 38 | ;; | ||
| 39 | *) | ||
| 40 | echo "Unknown tarball target \"${1}\" requested, please add it to ${0}." >&2 | ||
| 41 | exit 1 | ||
| 42 | ;; | ||
| 43 | esac | ||
| 44 | |||
| 45 | |||
| 46 | # | ||
| 47 | # Clean-up and re-create the temporary directory | ||
| 48 | # | ||
| 49 | rm -rf -- "${tmpdir}" | ||
| 50 | mkdir -p -- "${tmpdir}/boot" | ||
| 51 | |||
| 52 | |||
| 53 | # | ||
| 54 | # Try to install modules | ||
| 55 | # | ||
| 56 | if ! make INSTALL_MOD_PATH="${tmpdir}" modules_install; then | ||
| 57 | echo "" >&2 | ||
| 58 | echo "Ignoring error at module_install time, since that could be" >&2 | ||
| 59 | echo "a result of missing local modutils/module-init-tools," >&2 | ||
| 60 | echo "or you just didn't compile in module support at all..." >&2 | ||
| 61 | echo "" >&2 | ||
| 62 | fi | ||
| 63 | |||
| 64 | |||
| 65 | # | ||
| 66 | # Install basic kernel files | ||
| 67 | # | ||
| 68 | cp -v -- System.map "${tmpdir}/boot/System.map-${version}" | ||
| 69 | cp -v -- .config "${tmpdir}/boot/config-${version}" | ||
| 70 | cp -v -- vmlinux "${tmpdir}/boot/vmlinux-${version}" | ||
| 71 | |||
| 72 | |||
| 73 | # | ||
| 74 | # Install arch-specific kernel image(s) | ||
| 75 | # | ||
| 76 | case "${ARCH}" in | ||
| 77 | i386) | ||
| 78 | [ -f arch/i386/boot/bzImage ] && cp -v -- arch/i386/boot/bzImage "${tmpdir}/boot/vmlinuz-${version}" | ||
| 79 | ;; | ||
| 80 | alpha) | ||
| 81 | [ -f arch/alpha/boot/vmlinux.gz ] && cp -v -- arch/alpha/boot/vmlinux.gz "${tmpdir}/boot/vmlinuz-${version}" | ||
| 82 | ;; | ||
| 83 | vax) | ||
| 84 | [ -f vmlinux.SYS ] && cp -v -- vmlinux.SYS "${tmpdir}/boot/vmlinux-${version}.SYS" | ||
| 85 | [ -f vmlinux.dsk ] && cp -v -- vmlinux.dsk "${tmpdir}/boot/vmlinux-${version}.dsk" | ||
| 86 | ;; | ||
| 87 | *) | ||
| 88 | [ -f "${KBUILD_IMAGE}" ] && cp -v -- "${KBUILD_IMAGE}" "${tmpdir}/boot/vmlinux-kbuild-${version}" | ||
| 89 | echo "" >&2 | ||
| 90 | echo '** ** ** WARNING ** ** **' >&2 | ||
| 91 | echo "" >&2 | ||
| 92 | echo "Your architecture did not define any architecture-dependant files" >&2 | ||
| 93 | echo "to be placed into the tarball. Please add those to ${0} ..." >&2 | ||
| 94 | echo "" >&2 | ||
| 95 | sleep 5 | ||
| 96 | ;; | ||
| 97 | esac | ||
| 98 | |||
| 99 | |||
| 100 | # | ||
| 101 | # Create the tarball | ||
| 102 | # | ||
| 103 | ( | ||
| 104 | cd "${tmpdir}" | ||
| 105 | tar cf - . | ${compress} > "${tarball}${file_ext}" | ||
| 106 | ) | ||
| 107 | |||
| 108 | echo "Tarball successfully created in ${tarball}${file_ext}" | ||
| 109 | |||
| 110 | exit 0 | ||
| 111 | |||
diff --git a/scripts/package/mkspec b/scripts/package/mkspec index 6e7a58f145ad..0b1038737548 100755 --- a/scripts/package/mkspec +++ b/scripts/package/mkspec | |||
| @@ -62,10 +62,19 @@ echo "" | |||
| 62 | fi | 62 | fi |
| 63 | 63 | ||
| 64 | echo "%install" | 64 | echo "%install" |
| 65 | echo "%ifarch ia64" | ||
| 66 | echo 'mkdir -p $RPM_BUILD_ROOT/boot/efi $RPM_BUILD_ROOT/lib $RPM_BUILD_ROOT/lib/modules' | ||
| 67 | echo "%else" | ||
| 65 | echo 'mkdir -p $RPM_BUILD_ROOT/boot $RPM_BUILD_ROOT/lib $RPM_BUILD_ROOT/lib/modules' | 68 | echo 'mkdir -p $RPM_BUILD_ROOT/boot $RPM_BUILD_ROOT/lib $RPM_BUILD_ROOT/lib/modules' |
| 69 | echo "%endif" | ||
| 66 | 70 | ||
| 67 | echo 'INSTALL_MOD_PATH=$RPM_BUILD_ROOT make %{_smp_mflags} modules_install' | 71 | echo 'INSTALL_MOD_PATH=$RPM_BUILD_ROOT make %{_smp_mflags} modules_install' |
| 72 | echo "%ifarch ia64" | ||
| 73 | echo 'cp $KBUILD_IMAGE $RPM_BUILD_ROOT'"/boot/efi/vmlinuz-$KERNELRELEASE" | ||
| 74 | echo 'ln -s '"efi/vmlinuz-$KERNELRELEASE" '$RPM_BUILD_ROOT'"/boot/" | ||
| 75 | echo "%else" | ||
| 68 | echo 'cp $KBUILD_IMAGE $RPM_BUILD_ROOT'"/boot/vmlinuz-$KERNELRELEASE" | 76 | echo 'cp $KBUILD_IMAGE $RPM_BUILD_ROOT'"/boot/vmlinuz-$KERNELRELEASE" |
| 77 | echo "%endif" | ||
| 69 | 78 | ||
| 70 | echo 'cp System.map $RPM_BUILD_ROOT'"/boot/System.map-$KERNELRELEASE" | 79 | echo 'cp System.map $RPM_BUILD_ROOT'"/boot/System.map-$KERNELRELEASE" |
| 71 | 80 | ||
diff --git a/scripts/reference_discarded.pl b/scripts/reference_discarded.pl index d5cabb81bd1b..f04f62736851 100644 --- a/scripts/reference_discarded.pl +++ b/scripts/reference_discarded.pl | |||
| @@ -96,6 +96,7 @@ foreach $object (keys(%object)) { | |||
| 96 | $from !~ /\.debug_ranges$/ && | 96 | $from !~ /\.debug_ranges$/ && |
| 97 | $from !~ /\.debug_line$/ && | 97 | $from !~ /\.debug_line$/ && |
| 98 | $from !~ /\.debug_frame$/ && | 98 | $from !~ /\.debug_frame$/ && |
| 99 | $from !~ /\.debug_loc$/ && | ||
| 99 | $from !~ /\.exitcall\.exit$/ && | 100 | $from !~ /\.exitcall\.exit$/ && |
| 100 | $from !~ /\.eh_frame$/ && | 101 | $from !~ /\.eh_frame$/ && |
| 101 | $from !~ /\.stab$/)) { | 102 | $from !~ /\.stab$/)) { |
diff --git a/scripts/reference_init.pl b/scripts/reference_init.pl index 9a2408453869..7f6960b175a2 100644 --- a/scripts/reference_init.pl +++ b/scripts/reference_init.pl | |||
| @@ -98,6 +98,7 @@ foreach $object (sort(keys(%object))) { | |||
| 98 | $from !~ /\.pdr$/ && | 98 | $from !~ /\.pdr$/ && |
| 99 | $from !~ /\__param$/ && | 99 | $from !~ /\__param$/ && |
| 100 | $from !~ /\.altinstructions/ && | 100 | $from !~ /\.altinstructions/ && |
| 101 | $from !~ /\.eh_frame/ && | ||
| 101 | $from !~ /\.debug_/)) { | 102 | $from !~ /\.debug_/)) { |
| 102 | printf("Error: %s %s refers to %s\n", $object, $from, $line); | 103 | printf("Error: %s %s refers to %s\n", $object, $from, $line); |
| 103 | } | 104 | } |
diff --git a/scripts/setlocalversion b/scripts/setlocalversion new file mode 100644 index 000000000000..7c805c8fccd2 --- /dev/null +++ b/scripts/setlocalversion | |||
| @@ -0,0 +1,56 @@ | |||
| 1 | #!/usr/bin/perl | ||
| 2 | # Copyright 2004 - Ryan Anderson <ryan@michonline.com> GPL v2 | ||
| 3 | |||
| 4 | use strict; | ||
| 5 | use warnings; | ||
| 6 | use Digest::MD5; | ||
| 7 | require 5.006; | ||
| 8 | |||
| 9 | if (@ARGV != 1) { | ||
| 10 | print <<EOT; | ||
| 11 | Usage: setlocalversion <srctree> | ||
| 12 | EOT | ||
| 13 | exit(1); | ||
| 14 | } | ||
| 15 | |||
| 16 | my ($srctree) = @ARGV; | ||
| 17 | chdir($srctree); | ||
| 18 | |||
| 19 | my @LOCALVERSIONS = (); | ||
| 20 | |||
| 21 | # We are going to use the following commands to try and determine if this | ||
| 22 | # repository is at a Version boundary (i.e, 2.6.10 vs 2.6.10 + some patches) We | ||
| 23 | # currently assume that all meaningful version boundaries are marked by a tag. | ||
| 24 | # We don't care what the tag is, just that something exists. | ||
| 25 | |||
| 26 | # Git/Cogito store the top-of-tree "commit" in .git/HEAD | ||
| 27 | # A list of known tags sits in .git/refs/tags/ | ||
| 28 | # | ||
| 29 | # The simple trick here is to just compare the two of these, and if we get a | ||
| 30 | # match, return nothing, otherwise, return a subset of the SHA-1 hash in | ||
| 31 | # .git/HEAD | ||
| 32 | |||
| 33 | sub do_git_checks { | ||
| 34 | open(H,"<.git/HEAD") or return; | ||
| 35 | my $head = <H>; | ||
| 36 | chomp $head; | ||
| 37 | close(H); | ||
| 38 | |||
| 39 | opendir(D,".git/refs/tags") or return; | ||
| 40 | foreach my $tagfile (grep !/^\.{1,2}$/, readdir(D)) { | ||
| 41 | open(F,"<.git/refs/tags/" . $tagfile) or return; | ||
| 42 | my $tag = <F>; | ||
| 43 | chomp $tag; | ||
| 44 | close(F); | ||
| 45 | return if ($tag eq $head); | ||
| 46 | } | ||
| 47 | closedir(D); | ||
| 48 | |||
| 49 | push @LOCALVERSIONS, "g" . substr($head,0,8); | ||
| 50 | } | ||
| 51 | |||
| 52 | if ( -d ".git") { | ||
| 53 | do_git_checks(); | ||
| 54 | } | ||
| 55 | |||
| 56 | printf "-%s\n", join("-",@LOCALVERSIONS) if (scalar @LOCALVERSIONS > 0); | ||
