summaryrefslogtreecommitdiff
path: root/target/alix2d13/Makefile
diff options
context:
space:
mode:
authorJoerg Seitter <oss@seitter.net>2010-01-07 16:24:11 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2010-01-07 19:37:35 +0100
commit57dd3ff6e3f651d36d6c746bd83ac7e56d93fa9d (patch)
tree95e78a5649577b64c860ddd8b62f37226c85b9f4 /target/alix2d13/Makefile
parent4f3c6c355aa573924e197cb6069b02dc831110d9 (diff)
added new target for ALix2D13
Signed-off-by: Joerg Seitter <oss@seitter.net>
Diffstat (limited to 'target/alix2d13/Makefile')
-rw-r--r--target/alix2d13/Makefile28
1 files changed, 28 insertions, 0 deletions
diff --git a/target/alix2d13/Makefile b/target/alix2d13/Makefile
new file mode 100644
index 000000000..691cf1a08
--- /dev/null
+++ b/target/alix2d13/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}-${FS}-kernel $(MAKE_TRACE)
+ @echo
+ @echo 'The linux kernel is here: $(BIN_DIR)/${ADK_TARGET}-${FS}-kernel'
+ @echo 'The nfs root tarball is here: ${BIN_DIR}/${ROOTFSTARBALL}'
+ @echo 'Login as user root with password linux123 via ssh or console'
+endif