diff options
author | Mathias Kresin <dev@kresin.me> | 2016-09-11 19:06:32 +0200 |
---|---|---|
committer | Mathias Kresin <dev@kresin.me> | 2016-09-11 19:40:45 +0200 |
commit | 306f1c7846e3768dff51396c9dadce3956d5778f (patch) | |
tree | 00e7cc6676386963edec1f4aec141b419454f2de /target/linux/mvebu | |
parent | ec37a565878fd79d4127cbb843c17ce3b8dc97c0 (diff) | |
download | upstream-306f1c7846e3768dff51396c9dadce3956d5778f.tar.gz upstream-306f1c7846e3768dff51396c9dadce3956d5778f.tar.bz2 upstream-306f1c7846e3768dff51396c9dadce3956d5778f.zip |
mvebu: fix OpenBlocks AX3 image
The KERNEL_SIZE variable is unset and no padding is applied. This looks
like a typo to me since the ubinized image need to be aligned to the
flash blocksize.
Signed-off-by: Mathias Kresin <dev@kresin.me>
Diffstat (limited to 'target/linux/mvebu')
-rw-r--r-- | target/linux/mvebu/image/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/mvebu/image/Makefile b/target/linux/mvebu/image/Makefile index f3eda17a0b..7900fb9ddb 100644 --- a/target/linux/mvebu/image/Makefile +++ b/target/linux/mvebu/image/Makefile @@ -141,7 +141,7 @@ define Device/openblocks-ax3 DEVICE_DTS := armada-xp-openblocks-ax3-4 BLOCKSIZE := 128k PAGESIZE := 1 - IMAGE/factory.img := append-kernel $$$$(KERNEL_SIZE) | append-ubi + IMAGE/factory.img := append-kernel | pad-to $$(BLOCKSIZE) | append-ubi DEVICE_TITLE := Plat'Home OpenBlocks AX3 endef TARGET_DEVICES += openblocks-ax3 |