diff options
author | Florian Fainelli <florian@openwrt.org> | 2014-11-24 06:34:07 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2014-11-24 06:34:07 +0000 |
commit | a2768bd9e0efb430e864fe5faf5070ea724e2797 (patch) | |
tree | 49fdd25cfab8faf7ab938fdd04da204fb43926cd /target/linux/arm64/image/Makefile | |
parent | acf46919048fba514abf4d263e59e70eaddeb3ae (diff) | |
download | mtk-20170518-a2768bd9e0efb430e864fe5faf5070ea724e2797.zip mtk-20170518-a2768bd9e0efb430e864fe5faf5070ea724e2797.tar.gz mtk-20170518-a2768bd9e0efb430e864fe5faf5070ea724e2797.tar.bz2 |
arm64: add ARM 64-bits target
This target can be emulated using ARM's Foundation_V8 simulator
software or qemu-system-aarch64 using the command-line described in the
README file.
Signed-off-by: Florian Fainelli <florian@openwrt.org>
SVN-Revision: 43355
Diffstat (limited to 'target/linux/arm64/image/Makefile')
-rw-r--r-- | target/linux/arm64/image/Makefile | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/target/linux/arm64/image/Makefile b/target/linux/arm64/image/Makefile new file mode 100644 index 0000000..23c26ce --- /dev/null +++ b/target/linux/arm64/image/Makefile @@ -0,0 +1,46 @@ +# +# Copyright (C) 2010 OpenWrt.org +# +# This is free software, licensed under the GNU General Public License v2. +# See /LICENSE for more information. +# +include $(TOPDIR)/rules.mk +include $(INCLUDE_DIR)/image.mk + +define Image/Prepare + -rm -rf $(KDIR)/linux-system.axf + cp $(LINUX_DIR)/arch/$(LINUX_KARCH)/boot/Image $(KDIR)/Image + $(MAKE) -C boot-wrapper clean + $(MAKE) -C boot-wrapper compile +endef + +define Build/Clean + $(MAKE) -C boot-wrapper clean +endef + +define Image/Build/QemuVirt + $(CP) $(KDIR)/Image $(BIN_DIR)/openwrt-$(BOARD)-qemu-virt.Image +ifneq ($(CONFIG_TARGET_ROOTFS_INITRAMFS),) + $(CP) $(KDIR)/Image-initramfs $(BIN_DIR)/openwrt-$(BOARD)-qemu-virt-initramfs.Image +endif +endef + +define Image/Build/VexpressFoundation + $(CP) $(KDIR)/linux-system.axf $(BIN_DIR)/openwrt-$(BOARD)-vexpress-foundation.axf +endef + +define Image/BuildKernel + $(call Image/Build/QemuVirt) + $(call Image/Build/VexpressFoundation) +endef + +define Image/Build/squashfs + $(call prepare_generic_squashfs,$(KDIR)/root.squashfs) +endef + +define Image/Build + $(call Image/Build/$(1)) + dd if=$(KDIR)/root.$(1) of=$(BIN_DIR)/openwrt-$(BOARD)-root.$(1) bs=128k conv=sync +endef + +$(eval $(call BuildImage)) |