summaryrefslogtreecommitdiff
path: root/target/alix2d/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'target/alix2d/Makefile')
-rw-r--r--target/alix2d/Makefile28
1 files changed, 28 insertions, 0 deletions
diff --git a/target/alix2d/Makefile b/target/alix2d/Makefile
new file mode 100644
index 000000000..93a7c6642
--- /dev/null
+++ b/target/alix2d/Makefile
@@ -0,0 +1,28 @@
+# 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
+
+kernel-install:
+ cp $(LINUX_DIR)/arch/x86/boot/bzImage $(TARGET_DIR)/boot/vmlinuz-adk
+
+ifeq ($(FS),ext2-cf)
+imageinstall: $(BIN_DIR)/$(ROOTFSTARBALL)
+ @echo
+ @echo "The RootFS tarball is: $(BIN_DIR)/$(ROOTFSTARBALL),"
+ @echo "To install everything to CompactFlash use scripts/install.sh"
+ @echo 'Login as user root with password linux123 via ssh or console'
+endif
+ifeq ($(FS),nfsroot)
+imageinstall: $(BIN_DIR)/$(ROOTFSTARBALL)
+ @cp $(LINUX_DIR)/arch/x86/boot/bzImage \
+ $(BIN_DIR)/${ADK_TARGET}-${ARCH}-kernel $(MAKE_TRACE)
+ @echo
+ @echo 'The linux kernel is here: $(BIN_DIR)/${ADK_TARGET}-${ARCH}-kernel'
+ @echo 'The nfs root tarball is here: ${BIN_DIR}/${ROOTFSTARBALL}'
+ @echo 'Login as user root with password linux123 via ssh or console'
+endif