summaryrefslogtreecommitdiff
path: root/target/native/Makefile
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2014-03-14 09:28:19 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2014-03-14 09:28:19 +0100
commitbc561e500e22bc9d953fd9a80144f80295a4cbbd (patch)
treedc80cd4fb596e17e809743442a24c1c6a2b8ab02 /target/native/Makefile
parent5309511c9574091fb20a60c09e3b726c6c8e20b9 (diff)
convert to miniconfig
only miniconfig is used for all targets. aranym support is still broken/experimental. 32 bit kernel support for 64 targets need to be fixed. tested on usb boot on ibm-x40
Diffstat (limited to 'target/native/Makefile')
-rw-r--r--target/native/Makefile37
1 files changed, 0 insertions, 37 deletions
diff --git a/target/native/Makefile b/target/native/Makefile
deleted file mode 100644
index 3112b2a6a..000000000
--- a/target/native/Makefile
+++ /dev/null
@@ -1,37 +0,0 @@
-# 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/vars.mk
-include $(TOPDIR)/mk/kernel.mk
-include $(TOPDIR)/mk/modules.mk
-include $(TOPDIR)/mk/kernel-build.mk
-include $(TOPDIR)/mk/image.mk
-
-ifeq ($(CPU_ARCH),i686)
-KERNEL:=$(LINUX_DIR)/arch/x86/boot/bzImage
-else
-KERNEL:=$(LINUX_DIR)/vmlinuz
-endif
-
-ifeq ($(ADK_TARGET_FS),initramfs)
-imageinstall: $(FW_DIR)/$(INITRAMFS)
- @cp $(KERNEL) $(FW_DIR)/$(TARGET_KERNEL)
- @echo 'The kernel file is: $(FW_DIR)/${TARGET_KERNEL}'
- @echo 'The initramfs image is: ${FW_DIR}/${INITRAMFS}'
-endif
-ifeq ($(ADK_TARGET_FS),initramfs-piggyback)
-imageinstall: createinitramfs
- @cp $(KERNEL) $(FW_DIR)/${TARGET_KERNEL}
- @echo 'The kernel+initramfs file is: ${FW_DIR}/${TARGET_KERNEL}'
-endif
-ifeq ($(ADK_TARGET_FS),archive)
-imageinstall: $(FW_DIR)/$(ROOTFSTARBALL)
- @echo "The RootFS tarball is: $(FW_DIR)/$(ROOTFSTARBALL)"
-endif
-ifeq ($(ADK_TARGET_FS),nfsroot)
-imageinstall: $(FW_DIR)/$(ROOTFSUSERTARBALL)
- @cp $(KERNEL) $(FW_DIR)/$(TARGET_KERNEL)
- @echo 'The kernel file is: $(FW_DIR)/${TARGET_KERNEL}'
- @echo 'The nfs root tarball is: ${FW_DIR}/${ROOTFSUSERTARBALL}'
-endif