-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Telink]: Replaced manual bootloader configuration by conf file (#28260)
Replaced manual definition-based overlays by conf file Signed-off-by: Misha Tkachenko <misha.tkachenko@telink-semi.com> Co-authored-by: Alex Tsitsiura <s07641069@gmail.com>
- Loading branch information
Showing
2 changed files
with
37 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# | ||
# Copyright (c) 2023 Project CHIP Authors | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# | ||
|
||
# Enable this option in case if restoring the slot0 partition is expected from slot1 | ||
# partition in case if slot0 is not bootable or damaged | ||
CONFIG_BOOT_BOOTSTRAP=n | ||
|
||
# Enable this option in case if SWAP_MOVE logic need to be used | ||
CONFIG_BOOT_SWAP_USING_MOVE=y | ||
|
||
# Enable this option in case if SWAP_MOVE using scratch logic need to be used | ||
# Enabling this option expecting the availability of scratch partition in DTS | ||
CONFIG_BOOT_SWAP_USING_SCRATCH=n | ||
|
||
# Enable this option in case if the whole slot0 image need to be validated | ||
# With disabled option the only image magic is validated | ||
CONFIG_BOOT_VALIDATE_SLOT0=y |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters