diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2009-11-25 19:35:55 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2009-11-25 19:35:55 +0100 |
commit | 23153b00979f7e0e6b1dee395db7215185ba501b (patch) | |
tree | 8a68828acd3af55d489905e8025b482cefea134d /target/alix2d/Makefile | |
parent | eb283f8f1e8af9715f253208d04ab97aa54ce6a7 (diff) |
add new taget alix2d
- tested via nfs boot
- fix dansguardian zlib dependency
Diffstat (limited to 'target/alix2d/Makefile')
-rw-r--r-- | target/alix2d/Makefile | 28 |
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 |