diff options
author | Cody Ferber <codyf86@gmail.com> | 2013-09-01 15:06:52 -0400 |
---|---|---|
committer | Cody Ferber <codyf86@gmail.com> | 2013-09-01 15:06:52 -0400 |
commit | 8353588ba4a4fa80e0e2f69d50aa4e4f62d30158 (patch) | |
tree | 4db2feda62a3252bcfccd4ee0307c2fee0d8f89c | |
parent | 39c5e8ba5d7a21ab2fabb11ebba78df8513b53ea (diff) | |
download | device_samsung_espressowifi-8353588ba4a4fa80e0e2f69d50aa4e4f62d30158.zip device_samsung_espressowifi-8353588ba4a4fa80e0e2f69d50aa4e4f62d30158.tar.gz device_samsung_espressowifi-8353588ba4a4fa80e0e2f69d50aa4e4f62d30158.tar.bz2 |
Use correct kernel page size from Samsung.
Currently set to 4096, but from stock Samsung is 2048.
Change-Id: I2c41a35cd6ccb4b187cebde51ef23213c8d3bf53
-rw-r--r-- | BoardConfigCommon.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/BoardConfigCommon.mk b/BoardConfigCommon.mk index c25ef57..93afd5b 100644 --- a/BoardConfigCommon.mk +++ b/BoardConfigCommon.mk @@ -29,7 +29,7 @@ TARGET_BOOTLOADER_BOARD_NAME := piranha BOARD_NAND_PAGE_SIZE := 4096 BOARD_NAND_SPARE_SIZE := 128 -BOARD_KERNEL_PAGESIZE := 4096 +BOARD_KERNEL_PAGESIZE := 2048 BOARD_KERNEL_BASE := 0x40000000 BOARD_KERNEL_CMDLINE := |