mpc85xx: enable squashfs feature

Signed-off-by: Gabor Juhos <juhosg@openwrt.org>

SVN-Revision: 35675
lede-17.01
Gabor Juhos 2013-02-19 14:53:15 +00:00
parent ae9100e969
commit 69cc70a43c
2 changed files with 6 additions and 1 deletions

View File

@ -10,7 +10,7 @@ ARCH:=powerpc
BOARD:=mpc85xx
BOARDNAME:=Freescale MPC85xx
CFLAGS:=-Os -pipe -fno-caller-saves -mcpu=8540
FEATURES:=spe_fpu ramdisk
FEATURES:=spe_fpu squashfs
MAINTAINER:=Imre Kaloz <kaloz@openwrt.org>
LINUX_VERSION:=3.7.9

View File

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