Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 8445
b: refs/heads/master
c: 4e25d8b
h: refs/heads/master
i:
  8443: 8437119
v: v3
  • Loading branch information
Jan Beulich authored and Sam Ravnborg committed Sep 10, 2005
1 parent df3e56a commit b9033a7
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 7b49bb9aff8b14d15da58111d8908c877c0a525e
refs/heads/master: 4e25d8bb9550fb5912165196fe8502cdb831a336
10 changes: 8 additions & 2 deletions trunk/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -641,8 +641,13 @@ quiet_cmd_vmlinux__ ?= LD $@
# Generate new vmlinux version
quiet_cmd_vmlinux_version = GEN .version
cmd_vmlinux_version = set -e; \
. $(srctree)/scripts/mkversion > .tmp_version; \
mv -f .tmp_version .version; \
if [ ! -r .version ]; then \
rm -f .version; \
echo 1 >.version; \
else \
mv .version .old_version; \
expr 0$$(cat .old_version) + 1 >.version; \
fi; \
$(MAKE) $(build)=init

# Generate System.map
Expand Down Expand Up @@ -756,6 +761,7 @@ endif # ifdef CONFIG_KALLSYMS
# vmlinux image - including updated kernel symbols
vmlinux: $(vmlinux-lds) $(vmlinux-init) $(vmlinux-main) $(kallsyms.o) FORCE
$(call if_changed_rule,vmlinux__)
$(Q)rm -f .old_version

# The actual objects are generated when descending,
# make sure no implicit rule kicks in
Expand Down

0 comments on commit b9033a7

Please sign in to comment.