summaryrefslogtreecommitdiff
path: root/target/x86_64/Makefile
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2010-11-17 19:13:37 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2010-11-17 19:13:37 +0100
commit53d22bb88e82c1d8dd19db418ca12c664e341ba4 (patch)
treee1f35a46f56d1c8c0f8e8bc63b43dc8da63e4d2a /target/x86_64/Makefile
parentb47f6f464d38ad18716e4b270231812b123dcf67 (diff)
parentc6fa9771807b4438e35df864de9a01fb768d33d2 (diff)
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'target/x86_64/Makefile')
-rw-r--r--target/x86_64/Makefile27
1 files changed, 27 insertions, 0 deletions
diff --git a/target/x86_64/Makefile b/target/x86_64/Makefile
new file mode 100644
index 000000000..f5084a2db
--- /dev/null
+++ b/target/x86_64/Makefile
@@ -0,0 +1,27 @@
+# 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:=$(LINUX_DIR)/arch/x86/boot/bzImage
+
+ifeq ($(FS),archive)
+imageinstall: $(BIN_DIR)/$(ROOTFSTARBALL)
+ @cp $(KERNEL) $(BIN_DIR)/${ADK_TARGET}-${FS}-kernel
+ @echo 'The kernel file is: ${BIN_DIR}/${ADK_TARGET}-${FS}-kernel'
+ @echo 'The initramfs image is: ${BIN_DIR}/${ROOTFSTARBALL}'
+endif
+ifeq ($(FS),usb)
+imageinstall: $(BIN_DIR)/$(ROOTFSTARBALL)
+ @echo "The RootFS tarball is: $(BIN_DIR)/$(ROOTFSTARBALL)"
+ @echo "To install everything to USB use scripts/install.sh"
+endif
+ifeq ($(FS),initramfs-piggyback)
+imageinstall: ${BUILD_DIR}/${INITRAMFS_PIGGYBACK} createinitramfs
+ @cp $(KERNEL) $(BIN_DIR)/${ADK_TARGET}-${FS}-kernel
+ @echo 'The kernel file is: ${BIN_DIR}/${ADK_TARGET}-${FS}-kernel'
+endif