mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-15 00:04:15 +08:00
a5575df580
cmd_copy and cmd_shipped have similar functionality. The difference is that cmd_copy uses 'cp' while cmd_shipped 'cat'. Unify them into cmd_copy because this macro name is more intuitive. Going forward, cmd_copy will use 'cat' to avoid the permission issue. I also thought of 'cp --no-preserve=mode' but this option is not mentioned in the POSIX spec [1], so I am keeping the 'cat' command. [1]: https://pubs.opengroup.org/onlinepubs/009695299/utilities/cp.html Signed-off-by: Masahiro Yamada <masahiroy@kernel.org> Reviewed-by: Nick Desaulniers <ndesaulniers@google.com> Reviewed-by: Gabriel Krisman Bertazi <krisman@collabora.com>
36 lines
890 B
Makefile
36 lines
890 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# arch/microblaze/boot/Makefile
|
|
#
|
|
|
|
targets := linux.bin linux.bin.gz linux.bin.ub simpleImage.*
|
|
|
|
OBJCOPYFLAGS := -R .note -R .comment -R .note.gnu.build-id -O binary
|
|
|
|
$(obj)/linux.bin: vmlinux FORCE
|
|
$(call if_changed,objcopy)
|
|
|
|
$(obj)/linux.bin.ub: $(obj)/linux.bin FORCE
|
|
$(call if_changed,uimage)
|
|
|
|
$(obj)/linux.bin.gz: $(obj)/linux.bin FORCE
|
|
$(call if_changed,gzip)
|
|
|
|
quiet_cmd_strip = STRIP $< $@$2
|
|
cmd_strip = $(STRIP) -K microblaze_start -K _end -K __log_buf \
|
|
-K _fdt_start $< -o $@$2
|
|
|
|
UIMAGE_LOADADDR = $(CONFIG_KERNEL_BASE_ADDR)
|
|
|
|
$(obj)/simpleImage.$(DTB): vmlinux FORCE
|
|
$(call if_changed,objcopy)
|
|
|
|
$(obj)/simpleImage.$(DTB).ub: $(obj)/simpleImage.$(DTB) FORCE
|
|
$(call if_changed,uimage)
|
|
|
|
$(obj)/simpleImage.$(DTB).unstrip: vmlinux FORCE
|
|
$(call if_changed,copy)
|
|
|
|
$(obj)/simpleImage.$(DTB).strip: vmlinux FORCE
|
|
$(call if_changed,strip)
|