diff options
author | Florian Fainelli <florian@openwrt.org> | 2012-11-16 16:32:36 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2012-11-16 16:32:36 +0000 |
commit | ff82f93a246ab573e92ec39ab910c453bc10ffe6 (patch) | |
tree | 6d578f9090fe86d56ebe6558b380d389028304cf | |
parent | 141f8f453dd07c381dd7b1c464a82df8caa9e4eb (diff) | |
download | upstream-ff82f93a246ab573e92ec39ab910c453bc10ffe6.tar.gz upstream-ff82f93a246ab573e92ec39ab910c453bc10ffe6.tar.bz2 upstream-ff82f93a246ab573e92ec39ab910c453bc10ffe6.zip |
[sparc] build root filesystems and install them in $(BIN_DIR)
Signed-off-by: Florian Fainelli <florian@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@34214 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | target/linux/sparc/image/Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/target/linux/sparc/image/Makefile b/target/linux/sparc/image/Makefile index 314cd6a409..e1f3aa0d5e 100644 --- a/target/linux/sparc/image/Makefile +++ b/target/linux/sparc/image/Makefile @@ -17,4 +17,13 @@ define Image/BuildKernel # cp $(KDIR)/vmlinux.elf $(BIN_DIR)/$(IMG_PREFIX)-vmlinux.elf endef +define Image/Build/squashfs + $(call prepare_generic_squashfs,$(KDIR)/root.squashfs) +endef + +define Image/Build + $(call Image/Build/$(1)) + dd if=$(KDIR)/root.$(1) of=$(BIN_DIR)/openwrt-$(BOARD)-root.$(1) bs=128k conv=sync +endef + $(eval $(call BuildImage)) |