feature: libc opt
Signed-off-by: arvinzzz <zhaotianyu9@huawei.com> Change-Id: I9252c83e5b8a40f23e0df04ea165b9f51a4482b3
This commit is contained in:
parent
cde2b3bd31
commit
dab1a0d62f
1
Kconfig
1
Kconfig
|
@ -604,6 +604,7 @@ config SECURE_TRUSTZONE
|
||||||
bool "Enable ARM TrustZone"
|
bool "Enable ARM TrustZone"
|
||||||
default n
|
default n
|
||||||
depends on ARCH_ARM
|
depends on ARCH_ARM
|
||||||
|
select ARCH_ARM_V8M
|
||||||
config SECURE_HEAP_SIZE
|
config SECURE_HEAP_SIZE
|
||||||
int "TrustZone Heap Size (bytes)"
|
int "TrustZone Heap Size (bytes)"
|
||||||
default 2048
|
default 2048
|
||||||
|
|
|
@ -16,12 +16,16 @@ config ARCH_ARM_AARCH32
|
||||||
config ARCH_ARM_V7M
|
config ARCH_ARM_V7M
|
||||||
bool
|
bool
|
||||||
|
|
||||||
|
config ARCH_ARM_V8M
|
||||||
|
bool
|
||||||
|
|
||||||
config ARCH_ARM_V5TE
|
config ARCH_ARM_V5TE
|
||||||
bool
|
bool
|
||||||
|
|
||||||
config ARCH_ARM_VER
|
config ARCH_ARM_VER
|
||||||
string
|
string
|
||||||
default "armv7-m" if ARCH_ARM_V7M
|
default "armv7-m" if ARCH_ARM_V7M
|
||||||
|
default "armv8-m" if ARCH_ARM_V8M
|
||||||
default "armv5te" if ARCH_ARM_V5TE
|
default "armv5te" if ARCH_ARM_V5TE
|
||||||
|
|
||||||
#
|
#
|
||||||
|
@ -96,7 +100,7 @@ config ARCH_CORTEX_M33
|
||||||
|
|
||||||
config ARCH_CORTEX_M55
|
config ARCH_CORTEX_M55
|
||||||
bool
|
bool
|
||||||
select ARCH_ARM_V7M
|
select ARCH_ARM_V8M
|
||||||
select ARCH_ARM_AARCH32
|
select ARCH_ARM_AARCH32
|
||||||
select ARCH_FPU_VFP_V4
|
select ARCH_FPU_VFP_V4
|
||||||
select ARCH_FPU_VFP_D32
|
select ARCH_FPU_VFP_D32
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2021-2021 Huawei Device Co., Ltd. All rights reserved.
|
* Copyright (c) 2021-2022 Huawei Device Co., Ltd. All rights reserved.
|
||||||
*
|
*
|
||||||
* Redistribution and use in source and binary forms, with or without modification,
|
* Redistribution and use in source and binary forms, with or without modification,
|
||||||
* are permitted provided that the following conditions are met:
|
* are permitted provided that the following conditions are met:
|
||||||
|
|
Loading…
Reference in New Issue