X-Git-Url: http://git.openwrt.org/?a=blobdiff_plain;f=target%2Flinux%2Fath79%2Fimage%2FMakefile;h=cc71c319978080eeb1a963fce244252bc10a1824;hb=db34cdf6c537304f41a097d9b9b085efa31d1146;hp=5f1edcbdb262a2c5b865edbc5fbc88bab6b1d5da;hpb=6069bdd0871a20b5adce8d2f677946e05a2da609;p=openwrt%2Fstaging%2Fluka.git diff --git a/target/linux/ath79/image/Makefile b/target/linux/ath79/image/Makefile index 5f1edcbdb2..cc71c31997 100644 --- a/target/linux/ath79/image/Makefile +++ b/target/linux/ath79/image/Makefile @@ -36,6 +36,19 @@ define Build/loader-okli mv "$@.new" "$@" endef +define Build/relocate-kernel + rm -rf $@.relocate + $(CP) ../../generic/image/relocate $@.relocate + $(MAKE) -j1 -C $@.relocate KERNEL_ADDR=$(KERNEL_LOADADDR) CROSS_COMPILE=$(TARGET_CROSS) + ( \ + dd if=$@.relocate/loader.bin bs=32 conv=sync && \ + perl -e '@s = stat("$@"); print pack("N", @s[7])' && \ + cat "$@" \ + ) > "$@.new" + mv "$@.new" "$@" + rm -rf $@.relocate +endef + define Build/copy-file cat "$(1)" > "$@" endef