diff options
author | Felix Fietkau <nbd@nbd.name> | 2016-07-25 12:30:13 +0200 |
---|---|---|
committer | Felix Fietkau <nbd@nbd.name> | 2016-07-25 12:30:19 +0200 |
commit | 064bcdc25907e7c9c949bb80c4772ecf81178d66 (patch) | |
tree | 4dce025c96052787567cf86fbf6b37f4763a1885 | |
parent | d0619fb02ce1464ccc0aa75ebf28c3b2e1c5e11e (diff) | |
download | upstream-064bcdc25907e7c9c949bb80c4772ecf81178d66.tar.gz upstream-064bcdc25907e7c9c949bb80c4772ecf81178d66.tar.bz2 upstream-064bcdc25907e7c9c949bb80c4772ecf81178d66.zip |
kirkwood: fix UBIFS_OPTS variable in image build
Signed-off-by: Felix Fietkau <nbd@nbd.name>
-rw-r--r-- | target/linux/kirkwood/image/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/kirkwood/image/Makefile b/target/linux/kirkwood/image/Makefile index 1b979b78dc..20c697ef79 100644 --- a/target/linux/kirkwood/image/Makefile +++ b/target/linux/kirkwood/image/Makefile @@ -15,7 +15,7 @@ KERNEL_LOADADDR:=0x8000 TARGET_DEVICES = linksys-audi linksys-viper dockstar goflexnet goflexhome UBI_OPTS:="-m 2048 -p 128KiB -s 512" -UBIFS_OPTS:="-m 2048 -e 126KiB -c 4096" +UBIFS_OPTS := -m 2048 -e 126KiB -c 4096 define Device/Default KERNEL_DEPENDS = $$(wildcard $(DTS_DIR)/$$(DEVICE_DTS).dts) |