diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2017-03-26 05:44:31 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2017-03-26 05:44:36 +0200 |
commit | a64f563f108d74772e62a4f0d4371e2f9ff9ef9f (patch) | |
tree | 77d4db8aef9e447380706f13bcad40a1bbb74dde /target/alpha/Makefile | |
parent | 9d6f423bd25d36b5f63c2168fd64e83b8c7ebdbd (diff) |
add sample for dec multia
Diffstat (limited to 'target/alpha/Makefile')
-rw-r--r-- | target/alpha/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/target/alpha/Makefile b/target/alpha/Makefile index 6d6ae008c..f80cdec38 100644 --- a/target/alpha/Makefile +++ b/target/alpha/Makefile @@ -44,6 +44,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 nfs root tarball is: ${FW_DIR}/${ROOTFSUSERTARBALL}' +endif # image creation and kernel install kernel-strip: @@ -65,3 +70,6 @@ endif ifeq ($(ADK_TARGET_FS),initramfspiggyback) imageinstall: createinitramfs targethelp endif +ifeq ($(ADK_TARGET_FS),nfsroot) +imageinstall: kernel-install $(FW_DIR)/$(ROOTFSUSERTARBALL) targethelp +endif |