diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2013-02-19 14:53:15 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2013-02-19 14:53:15 +0000 |
commit | 882214dd4628dfbef58bf62ddf10cc2b6b350a29 (patch) | |
tree | 7dbfac257597b0a190e9e212a1c127fc52858238 /target/linux/mpc85xx/image | |
parent | 4800e6f07b4607155687b9793f396aa34bfd2213 (diff) | |
download | upstream-882214dd4628dfbef58bf62ddf10cc2b6b350a29.tar.gz upstream-882214dd4628dfbef58bf62ddf10cc2b6b350a29.tar.bz2 upstream-882214dd4628dfbef58bf62ddf10cc2b6b350a29.zip |
mpc85xx: enable squashfs feature
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@35675 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/mpc85xx/image')
-rw-r--r-- | target/linux/mpc85xx/image/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/target/linux/mpc85xx/image/Makefile b/target/linux/mpc85xx/image/Makefile index 45cd7abdc2..b762515ec3 100644 --- a/target/linux/mpc85xx/image/Makefile +++ b/target/linux/mpc85xx/image/Makefile @@ -24,6 +24,11 @@ define Image/Build/ext2 cp $(KDIR)/root.$(1) $(BIN_DIR)/$(IMG_PREFIX)-ext2.img endef +define Image/Build/squashfs + $(call prepare_generic_squashfs,$(KDIR)/root.squashfs) + cp $(KDIR)/root.squashfs $(BIN_DIR)/$(IMG_PREFIX)-root.squashfs +endef + define Image/Build $(call Image/Build/$(1),$(1)) endef |