diff options
-rw-r--r-- | target/rb532/Makefile | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/target/rb532/Makefile b/target/rb532/Makefile index 4c980392a..38cd40841 100644 --- a/target/rb532/Makefile +++ b/target/rb532/Makefile @@ -12,18 +12,16 @@ include $(TOPDIR)/mk/image.mk kernel-install: cp $(LINUX_DIR)/vmlinux $(BIN_DIR)/${DEVICE}-${ARCH}-kernel -ifeq ($(FS),ext2) +ifeq ($(FS),ext2-cf) imageinstall: $(BIN_DIR)/$(ROOTFSTARBALL) @echo + @echo 'The kernel file is: ${BIN_DIR}/${DEVICE}-${ARCH}-kernel' @echo "The RootFS tarball is: $(BIN_DIR)/$(ROOTFSTARBALL)," - @echo "Use following command to create a QEMU Image:" - @echo "sudo ./scripts/create-image.sh -n qemu-mips.img $(BIN_DIR)/$(ROOTFSTARBALL)" - @echo "Start qemu with following options:" - @echo "qemu-system-mipsel -nographic -M malta -kernel $(BIN_DIR)/${DEVICE}-${ARCH}-kernel -hda qemu-mips.img" endif ifeq ($(FS),nfsroot) imageinstall: $(BIN_DIR)/$(ROOTFSTARBALL) + @echo @echo 'The kernel file is: ${BIN_DIR}/${DEVICE}-${ARCH}-kernel' @echo 'The nfs root tarball is: ${BIN_DIR}/${ROOTFSTARBALL}' endif |