From 1fe2a0aad6f17b6ebe27981af6096ee0f4494e91 Mon Sep 17 00:00:00 2001 From: EunBong Song Date: Thu, 6 Apr 2017 13:29:23 +0900 Subject: [PATCH] s5j: fix trivial typo in Kconfig S5J_FLASH_SIZE and S5J_BOOTLOADER_REGION_SIZE are bytes unit, so Kconfig entries should be changed to byte-unit. Change-Id: I25ded972c5583328c0ec6d1b95455f77aecbfd15 Signed-off-by: EunBong Song --- os/arch/arm/src/s5j/Kconfig | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/os/arch/arm/src/s5j/Kconfig b/os/arch/arm/src/s5j/Kconfig index 5b299bf..6827254 100644 --- a/os/arch/arm/src/s5j/Kconfig +++ b/os/arch/arm/src/s5j/Kconfig @@ -235,8 +235,8 @@ config S5J_FLASH_MIRROR_BASE Provides mirror address mapped to Nor flash with same space config S5J_FLASH_SIZE - hex "Nor Flash size (KB)" - default 8192 + hex "Nor Flash size (Byte)" + default 0x800000 help Samsung IoT uses serial nor flash memory, set to default size @@ -245,8 +245,8 @@ config S5J_FLASH_SECTOR_SIZE default 4096 config S5J_BOOTLOADER_REGION_SIZE - hex "Boot loader region size(KB)" - default 4096 + hex "Boot loader region size (Byte)" + default 0x400000 help When smartfs initialize flash, it will be skipped. This features is used to prevent for erasing or accessing to Non smartfs region. -- 2.7.4