1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-28 21:43:14 +03:00

[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
This commit is contained in:
florian 2012-11-16 16:32:36 +00:00
parent 355c0f38c8
commit f099774d52

View File

@ -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))