summaryrefslogtreecommitdiff
path: root/target/ppc/Makefile
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2015-01-26 13:18:13 -0600
committerWaldemar Brodkorb <wbx@openadk.org>2015-01-26 13:18:20 -0600
commitd3a56fd7f104865a1f05c384d398828a0f16b2b2 (patch)
tree045952960283288fa7ff983d0f591cf1a720ad0c /target/ppc/Makefile
parentf2564cf95784978e249d47cf94e04813afa9c2e6 (diff)
add basic config snippets for mac mini (ppc)
Diffstat (limited to 'target/ppc/Makefile')
-rw-r--r--target/ppc/Makefile8
1 files changed, 8 insertions, 0 deletions
diff --git a/target/ppc/Makefile b/target/ppc/Makefile
index c7999d84d..e1df1ef29 100644
--- a/target/ppc/Makefile
+++ b/target/ppc/Makefile
@@ -57,6 +57,11 @@ ifeq ($(ADK_TARGET_QEMU),y)
@echo 'qemu-system-${ADK_TARGET_CPU_ARCH} ${QEMU_ARGS} -kernel $(FW_DIR)/$(TARGET_KERNEL)'
endif
endif
+ifeq ($(ADK_TARGET_FS),nfsroot)
+targethelp:
+ @echo 'The kernel file is: $(FW_DIR)/${TARGET_KERNEL}'
+ @echo "The RootFS tarball is: $(FW_DIR)/$(ROOTFSUSERTARBALL)"
+endif
# image creation and kernel install
kernel-strip:
@@ -96,3 +101,6 @@ else
imageinstall: createinitramfs targethelp
endif
endif
+ifeq ($(ADK_TARGET_FS),nfsroot)
+imageinstall: kernel-install $(FW_DIR)/$(ROOTFSUSERTARBALL) targethelp
+endif