diff options
author | Mathias Kresin <dev@kresin.me> | 2016-09-04 08:56:05 +0200 |
---|---|---|
committer | Mathias Kresin <dev@kresin.me> | 2016-09-04 08:56:05 +0200 |
commit | e7ec7a08aae0afb1064d1bf26a9cd6fe1e64d516 (patch) | |
tree | 46113a53b6412da941652d98c1ba560df2226456 /target/linux/lantiq | |
parent | ddd259b0d5d0d4ec0084cb7cb30992b63780e962 (diff) | |
download | upstream-e7ec7a08aae0afb1064d1bf26a9cd6fe1e64d516.tar.gz upstream-e7ec7a08aae0afb1064d1bf26a9cd6fe1e64d516.tar.bz2 upstream-e7ec7a08aae0afb1064d1bf26a9cd6fe1e64d516.zip |
image: use k as unit suffix for blocksize
Use k as unit suffix for kilobyte to have a the same unit regardless of
the used filesystem.
Signed-off-by: Mathias Kresin <dev@kresin.me>
Diffstat (limited to 'target/linux/lantiq')
-rw-r--r-- | target/linux/lantiq/image/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/target/linux/lantiq/image/Makefile b/target/linux/lantiq/image/Makefile index 3c7391808d..8e06a99c22 100644 --- a/target/linux/lantiq/image/Makefile +++ b/target/linux/lantiq/image/Makefile @@ -187,14 +187,14 @@ endef DEVICE_VARS += IMAGE_SIZE define Device/NAND/xway - BLOCKSIZE := 16KiB + BLOCKSIZE := 16k PAGESIZE := 512 SUBPAGESIZE := 256 FILESYSTEMS += ubifs endef define Device/NAND/xrx200 - BLOCKSIZE := 128KiB + BLOCKSIZE := 128k PAGESIZE := 2048 SUBPAGESIZE := 512 FILESYSTEMS += ubifs |