summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2014-03-06 17:03:38 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2014-03-06 17:03:38 +0100
commitb42d26ca729134d31887445856c65a85da69fb65 (patch)
treec8e55a40b8840fe87b39ce45b507848ccc1a2cdf
parent19a2d14d4e85ef353cc28b74c7cff2af1f76ab89 (diff)
enable archive mode for microblaze
-rw-r--r--target/config/Config.in1
-rw-r--r--target/microblaze/Makefile4
2 files changed, 4 insertions, 1 deletions
diff --git a/target/config/Config.in b/target/config/Config.in
index c1d6230dc..913d426c9 100644
--- a/target/config/Config.in
+++ b/target/config/Config.in
@@ -871,7 +871,6 @@ config ADK_TARGET_ROOTFS_ARCHIVE
bool "Archive usable for different filesystems"
select ADK_HOST_NEED_GENEXT2FS if ADK_HARDWARE_QEMU
select ADK_KERNEL_EXT2_FS if ADK_HARDWARE_QEMU
- depends on !ADK_LINUX_MICROBLAZE
help
Use this option if your root filesystem is ext2/ext3/ext4/xfs.
diff --git a/target/microblaze/Makefile b/target/microblaze/Makefile
index e9a4a517d..de528f91e 100644
--- a/target/microblaze/Makefile
+++ b/target/microblaze/Makefile
@@ -55,3 +55,7 @@ ifneq ($(ADK_HARDWARE_QEMU),)
@echo 'qemu-system-${CPU_ARCH} -M $(MODEL) -nographic -kernel $(FW_DIR)/$(TARGET_KERNEL) $(DTB)'
endif
endif
+ifeq ($(ADK_TARGET_FS),archive)
+imageinstall: $(FW_DIR)/$(ROOTFSTARBALL)
+ @echo "The RootFS tarball is: $(FW_DIR)/$(ROOTFSTARBALL)"
+endif