Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,7 @@ CONFIG_SPI_NOR=n
CONFIG_FPROTECT=n

CONFIG_BOOT_WATCHDOG_FEED=n

# Power domains forced on by default on boot, no need
# to manage them in bootloader.
CONFIG_POWER_DOMAIN=n
53 changes: 53 additions & 0 deletions boot/zephyr/boards/nrf54h20dk_nrf54h20_cpuapp.overlay
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
/*
* Copyright (c) 2025 Nordic Semiconductor ASA
*
* SPDX-License-Identifier: Apache-2.0
*/

&gdpwr {
status = "disabled";
Copy link
Contributor

@nordicjm nordicjm Aug 8, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this indent is wrong and not using tabs incredible github has globally changed the tab indent size to 4, even if you had it set at 8, thanks for that worthless annoying change...

};

&gdpwr_fast_active_0 {
status = "disabled";
};

&gdpwr_fast_active_1 {
status = "disabled";
};

&gdpwr_fast_main {
status = "disabled";
};

&gdpwr_slow_active {
status = "disabled";
};

&gdpwr_slow_main {
status = "disabled";
};

&gpio_pad_group0 {
status = "disabled";
};

&gpio_pad_group1 {
status = "disabled";
};

&gpio_pad_group2 {
status = "disabled";
};

&gpio_pad_group6 {
status = "disabled";
};

&gpio_pad_group7 {
status = "disabled";
};

&gpio_pad_group9 {
status = "disabled";
};
Loading