summaryrefslogtreecommitdiff
path: root/target/x86_64/Makefile
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2010-11-14 21:09:58 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2010-11-14 21:09:58 +0100
commitb4d61f0ee3485f89dd8560227c833dc948523ecf (patch)
tree3b032e4e2c209781fa33886488b41774b49e3f90 /target/x86_64/Makefile
parent3e9ec766c9b289becc53fba5fc57eb20723eeab7 (diff)
consolidate x86/x86_64 support
use hardware profiles, instead of extra target dirs. fix dependencies.
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