diff options
author | 2016-12-22 00:16:31 +0100 | |
---|---|---|
committer | 2016-12-22 00:16:31 +0100 | |
commit | 4be62c00c8368e1bb87fec688d1a6beb8d0c07d2 (patch) | |
tree | e3fff62440bc1d63af8dede7df87810d8eeafdb2 | |
parent | 5a9e5d365cb9af35b67024586df5efddfaa32e40 (diff) | |
download | meta-qcom-4be62c00c8368e1bb87fec688d1a6beb8d0c07d2.tar.gz meta-qcom-4be62c00c8368e1bb87fec688d1a6beb8d0c07d2.tar.bz2 meta-qcom-4be62c00c8368e1bb87fec688d1a6beb8d0c07d2.zip |
machine: apq8096: set pagesize to 4096
On 8096 machines (with UFS) the pagesize is 4096, not 2048. Not using the right
size might create images which won't be loaded by the bootloader (lk).
Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org>
-rw-r--r-- | conf/machine/include/qcom-apq8096.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/conf/machine/include/qcom-apq8096.inc b/conf/machine/include/qcom-apq8096.inc index 5595df2..8cb5cd4 100644 --- a/conf/machine/include/qcom-apq8096.inc +++ b/conf/machine/include/qcom-apq8096.inc @@ -14,5 +14,5 @@ IMAGE_FSTYPES_append = " ext4.gz" IMAGE_ROOTFS_ALIGNMENT = "4096" QCOM_BOOTIMG_KERNEL_BASE ?= "0x80000000" -QCOM_BOOTIMG_PAGE_SIZE ?= "2048" +QCOM_BOOTIMG_PAGE_SIZE ?= "4096" QCOM_BOOTIMG_BUNDLE_DT ?= "1" |