summaryrefslogtreecommitdiff
path: root/target/native/Makefile
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2010-07-16 16:47:33 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2010-07-16 16:47:33 +0200
commit9588a89158a9a4be899f82295ab851acfda55bf7 (patch)
treea387ab731f858c276a0848f4cb44df8732629524 /target/native/Makefile
parentaff84b44070cc4fed9949a37ea155d3975c6a2fb (diff)
parent0510c57bc3034ea84f3c724090009182f46835e3 (diff)
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'target/native/Makefile')
-rw-r--r--target/native/Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/target/native/Makefile b/target/native/Makefile
index 1999540c4..63eeb1842 100644
--- a/target/native/Makefile
+++ b/target/native/Makefile
@@ -8,7 +8,7 @@ include $(TOPDIR)/mk/modules.mk
include $(TOPDIR)/mk/kernel-build.mk
include $(TOPDIR)/mk/image.mk
-KERNEL:=$(LINUX_DIR)/arch/x86/boot/bzImage
+KERNEL:=$(LINUX_DIR)/vmlinuz
ifeq ($(FS),initramfs)
imageinstall: $(BIN_DIR)/$(INITRAMFS)
@@ -21,3 +21,7 @@ imageinstall: ${BUILD_DIR}/${INITRAMFS_PIGGYBACK} createinitramfs
@cp $(KERNEL) ${BIN_DIR}/${ADK_TARGET}-${FS}-kernel
@echo 'The kernel+initramfs file is: ${BIN_DIR}/${ADK_TARGET}-${FS}-kernel'
endif
+ifeq ($(FS),archive)
+imageinstall: $(BIN_DIR)/$(ROOTFSTARBALL)
+ @echo "The RootFS tarball is: $(BIN_DIR)/$(ROOTFSTARBALL)"
+endif