summaryrefslogtreecommitdiff
path: root/target/qemu-cris/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'target/qemu-cris/Makefile')
-rw-r--r--target/qemu-cris/Makefile35
1 files changed, 35 insertions, 0 deletions
diff --git a/target/qemu-cris/Makefile b/target/qemu-cris/Makefile
new file mode 100644
index 000000000..e8cdf1bb1
--- /dev/null
+++ b/target/qemu-cris/Makefile
@@ -0,0 +1,35 @@
+# $Id: Makefile 30 2008-09-04 13:31:09Z wbx $
+#-
+# This file is part of the OpenADK project. OpenADK is copyrighted
+# material, please see the LICENCE file in the top-level directory.
+
+include $(TOPDIR)/rules.mk
+include $(TOPDIR)/mk/kernel.mk
+include $(TOPDIR)/mk/modules.mk
+include $(TOPDIR)/mk/kernel-build.mk
+include $(TOPDIR)/mk/image.mk
+
+$(TOOLS_BUILD_DIR):
+ mkdir -p $(TOOLS_BUILD_DIR)
+
+tools-compile: $(TOOLS_BUILD_DIR)
+ $(MAKE) -C tools/mkfimage
+
+kernel-install: tools-compile
+ PATH='${TARGET_PATH}' \
+ mkfimage $(LINUX_DIR)/arch/cris/arch-v32/boot/zImage \
+ $(BIN_DIR)/${DEVICE}-${ARCH}-kernel $(MAKE_TRACE)
+
+ifeq ($(FS),ext2)
+imageinstall: $(BIN_DIR)/$(ROOTFSTARBALL)
+ @echo
+ @echo "The RootFS tarball is: $(BIN_DIR)/$(ROOTFSTARBALL),"
+ @echo "Use following command to create a QEMU Image:"
+ @echo "sudo ./scripts/create-image.sh qemu.img $(BIN_DIR)/$(ROOTFSTARBALL)"
+endif
+
+ifeq ($(FS),initramfs)
+imageinstall: $(BIN_DIR)/$(INITRAMFS)
+ @echo 'The kernel file is: ${BIN_DIR}/${DEVICE}-${ARCH}-kernel'
+ @echo 'The initramfs image is: ${BIN_DIR}/${INITRAMFS}'
+endif