Makefile (60aac93283823b44644c92d0803d821b9d2d987a) | Makefile (4bdad983a4a4fb509aba8b102a2233f0ea1d7681) |
---|---|
1# 2# linux/arch/arm/boot/compressed/Makefile 3# 4# create a compressed vmlinuz image from the original vmlinux 5# 6 7OBJS = 8 --- 126 unchanged lines hidden (view full) --- 135# to bother about it here. 136check_for_bad_syms = \ 137bad_syms=$$($(CROSS_COMPILE)nm $@ | sed -n 's/^.\{8\} [bc] \(.*\)/\1/p') && \ 138[ -z "$$bad_syms" ] || \ 139 ( echo "following symbols must have non local/private scope:" >&2; \ 140 echo "$$bad_syms" >&2; rm -f $@; false ) 141 142check_for_multiple_zreladdr = \ | 1# 2# linux/arch/arm/boot/compressed/Makefile 3# 4# create a compressed vmlinuz image from the original vmlinux 5# 6 7OBJS = 8 --- 126 unchanged lines hidden (view full) --- 135# to bother about it here. 136check_for_bad_syms = \ 137bad_syms=$$($(CROSS_COMPILE)nm $@ | sed -n 's/^.\{8\} [bc] \(.*\)/\1/p') && \ 138[ -z "$$bad_syms" ] || \ 139 ( echo "following symbols must have non local/private scope:" >&2; \ 140 echo "$$bad_syms" >&2; rm -f $@; false ) 141 142check_for_multiple_zreladdr = \ |
143if [ $(words $(ZRELADDR)) -gt 1 -a "$(CONFIG_AUTO_ZRELADDR)" == "" ]; then \ | 143if [ $(words $(ZRELADDR)) -gt 1 -a "$(CONFIG_AUTO_ZRELADDR)" = "" ]; then \ |
144 echo 'multiple zreladdrs: $(ZRELADDR)'; \ 145 echo 'This needs CONFIG_AUTO_ZRELADDR to be set'; \ 146 false; \ 147fi 148 149$(obj)/vmlinux: $(obj)/vmlinux.lds $(obj)/$(HEAD) $(obj)/piggy.$(suffix_y).o \ 150 $(addprefix $(obj)/, $(OBJS)) $(lib1funcs) FORCE 151 @$(check_for_multiple_zreladdr) --- 15 unchanged lines hidden --- | 144 echo 'multiple zreladdrs: $(ZRELADDR)'; \ 145 echo 'This needs CONFIG_AUTO_ZRELADDR to be set'; \ 146 false; \ 147fi 148 149$(obj)/vmlinux: $(obj)/vmlinux.lds $(obj)/$(HEAD) $(obj)/piggy.$(suffix_y).o \ 150 $(addprefix $(obj)/, $(OBJS)) $(lib1funcs) FORCE 151 @$(check_for_multiple_zreladdr) --- 15 unchanged lines hidden --- |