diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2014-07-25 15:19:49 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2014-07-25 15:23:05 +0200 |
commit | 5271920485af86b89fde74be4ff7f535f431c4d0 (patch) | |
tree | 9b0415d0818f93ca2495b1939918998579dae298 /target/microblaze/Makefile | |
parent | 22515c88eb4e34adc57bafcece97f751cf063aa8 (diff) |
disable microblaze for uClibc*, fix flash boot related issues
Diffstat (limited to 'target/microblaze/Makefile')
-rw-r--r-- | target/microblaze/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/target/microblaze/Makefile b/target/microblaze/Makefile index d4884ae0d..ebde025f2 100644 --- a/target/microblaze/Makefile +++ b/target/microblaze/Makefile @@ -65,8 +65,8 @@ kernel-strip: kernel-install: kernel-strip @cp $(KERNEL) $(FW_DIR)/$(TARGET_KERNEL) ifeq ($(ADK_TARGET_FS),squashfs) - env PATH=$(HOST_PATH) qemu-img create -f raw $(FW_DIR)/$(ROOTFSSQUASHFS) $(ADK_TARGET_MTD_SIZE) >/dev/null 2>&1 - dd conv=notrunc if=$(BUILD_DIR)/root.squashfs of=$(FW_DIR)/$(ROOTFSSQUASHFS) >/dev/null 2>&1 + env PATH=$(HOST_PATH) qemu-img create -f raw $(FW_DIR)/$(ROOTFSSQUASHFS) $(ADK_TARGET_MTD_SIZE) + dd conv=notrunc if=$(BUILD_DIR)/root.squashfs of=$(FW_DIR)/$(ROOTFSSQUASHFS) endif # filesystem specific targets @@ -80,7 +80,7 @@ ifeq ($(ADK_TARGET_FS),initramfspiggyback) imageinstall: createinitramfs targethelp endif ifeq ($(ADK_TARGET_FS),squashfs) -imageinstall: kernel-install $(BUILD_DIR)/root.squashfs targethelp +imageinstall: $(BUILD_DIR)/root.squashfs kernel-install targethelp endif ifeq ($(ADK_TARGET_FS),jffs2) imageinstall: kernel-install $(FW_DIR)/$(ROOTFSJFFS2) targethelp |