Compare commits

...

4 Commits

Author SHA1 Message Date
jjanella 7513695d8d Update README.md 2026-07-08 10:00:27 -04:00
Jeremy Janella 293cfbd35f WIP: MCUBoot Readme 2026-07-04 16:52:55 -04:00
Jeremy Janella d20456a39c mcuboot starting documentation 2026-07-04 14:23:37 -04:00
Jeremy Janella 6f163e1250 failing mcuboot poc 2026-05-16 23:17:22 -04:00
101 changed files with 53684 additions and 3 deletions
+128 -1
View File
@@ -1,2 +1,129 @@
**/.* **/.*
!.git* !.git*
*.o
*.a
*.d
*.cmd
*.log
*.pyc
*.swp
*.swo
*~
# Emacs
\#*\#
build*/
!doc/build/
!scripts/build
!share/sysbuild/build
!tests/drivers/build_all
!scripts/pylib/build_helpers
cscope.*
.dir
/*.patch
# The .cache directory will be used to cache toolchain capabilities if
# no suitable out-of-tree directory is found.
.cache
outdir
outdir-*
scripts/basic/fixdep
scripts/gen_idt/gen_idt
coverage-report
doc-coverage.info
doc/_build
doc/doxygen
doc/xml
doc/html
doc/boards
doc/samples
doc/latex
doc/themes/zephyr-docs-theme
sanity-out*
twister-out*
bsim_out
bsim_bt_out
myresults.xml
tests/RunResults.xml
scripts/grub
doc/reference/kconfig/*.rst
doc/doc.warnings
.*project
.settings
.envrc
.vscode
hide-defaults-note
venv
.venv
.envrc
.DS_Store
.clangd
new.info
# Cargo drops lock files in projects to capture resolved dependencies.
# We don't want to record these.
Cargo.lock
# Cargo encourages a .cargo/config.toml file to symlink to a generated file. Don't save these.
.cargo/
# Normal west builds will place the Rust target directory under the build directory. However,
# sometimes IDEs and such will litter these target directories as well.
target/
# CI output
compliance.xml
dts_linter.patch
_error.types
# Tag files
GPATH
GRTAGS
GTAGS
TAGS
tags
.idea
# from check_compliance.py
# zephyr-keep-sorted-start ignorecase
BinaryFiles.txt
BoardYml.txt
Checkpatch.txt
ClangFormat.txt
CMakeStyle.txt
DeviceAPI.txt
DeviceMmioCheck.txt
DevicetreeBindings.txt
DevicetreeLinting.txt
GitDiffCheck.txt
Gitlint.txt
Identity.txt
ImageSize.txt
Kconfig.txt
KconfigBasic.txt
KconfigBasicNoModules.txt
KconfigHWMv2.txt
KeepSorted.txt
LicenseAndCopyrightCheck.txt
MaintainersFormat.txt
ModulesMaintainers.txt
Nits.txt
Pylint.txt
PythonCompat.txt
Ruff.txt
SphinxLint.txt
SysbuildKconfig.txt
SysbuildKconfigBasic.txt
SysbuildKconfigBasicNoModules.txt
TextEncoding.txt
YAMLLint.txt
ZephyrModuleFile.txt
# zephyr-keep-sorted-stop
# Node dependecies
node_modules
+128 -2
View File
@@ -1,3 +1,129 @@
# UTAT Firmware Development Environment # MCUBoot Implementation Guide
My firmware development environment for the University of Toronto Aerospace Team Documentation of the steps taken to implement MCUBoot on a Nucleo G431RB development board.
## Environnment config
Use the environment written in flake.nix by running `nix develop`
## Set up Zephyr
Zephyr is the RTOS that uses the MCUboot bootloader being set up.
[Getting started with Zephyr](https://docs.zephyrproject.org/latest/develop/getting_started/index.html)
```sh
west init zephyrproject
cd zepyhrproject
west update
west zephyr-export
cd zepyhr
west sdk install
```
## MCUBoot POC Implementation
MCUBoot is a bootloader for Zephyr, which allows multiple firmwares to exist on a board. MCUBoot can dynamically switch which firmware is active. This is useful in the event of one firmware failing.
[Abstract MCUBoot Guide](https://docs.mcuboot.com/readme-zephyr.html)
```sh
west build -p always -b nucleo_g431rb samples/basic/blinky
west flash --runner pyocd # had to su root first to run this (after running nix develop)
```
## Configure partition sizes
The devicetree specification file declares the hardware configuration. The flash storage needs three partitions, one for boot, and two for the two firmwares it will hold.
[DeviceTree Specification documentation](https://docs.zephyrproject.org/latest/build/dts/intro-scope-purpose.html)
[Partitioning examples](https://docs.zephyrproject.org/latest/build/dts/api/bindings/mtd/fixed-partitions.html)
The board I'm using has its DeviceTree Specification in `zephyr/boards/st/nucleo_g431rb/nucleo_g431rb.dts`
I created a partition for MCUBoot, two firmware slots, and additional storage in the flash storage.
```c
&flash0 {
partitions {
#address-cells = <1>;
#size-cells = <1>;
ranges;
boot_partition: partition@0 {
compatible = "zephyr,mapped-partition";
label = "mcuboot";
reg = <0x00000000 0x00008000>;
};
slot0_partition: partition@8000 {
compatible = "zephyr,mapped-partition";
label = "image-0";
reg = <0x00008000 0x00010000>;
};
slot1_partition: partition@10000 {
compatible = "zephyr,mapped-partition";
label = "image-1";
reg = <0x00010000 0x0018000>;
};
storage_partition: partition@18000 {
compatible = "zephyr,mapped-partition";
label = "storage";
reg = <0x00018000 0x00020000>;
};
};
};
```
## Try to build MCUBoot
```sh
west build -p always -b nucleo_g431rb bootloader/mcuboot/boot/zephyr
```
old below
```
# Create a private key: https://docs.mcuboot.com/readme-zephyr.html
python ./bootloader/mcuboot/scripts/imgtool.py keygen -k private.pem -t rsa-2048
# Create its public key
openssl rsa -in private.pem -pubout > public.pem
# Set up signing: https://docs.mcuboot.com/readme-zephyr.html
# ./bootloader/mcuboot/samples/zephyr/Makefile
python bootloader/mcuboot/scripts/imgtool.py sign \
--key mykey.pem \
--header-size 0x200 \
--align 8 \
--version 1.2 \
--slot-size 0x8000 \
./
# Add the key file path to the KConfig https://docs.zephyrproject.org/latest/build/kconfig/setting.html
echo "
# Set the key file
CONFIG_BOOT_SIGNATURE_KEY_FILE=public.pem" >> "./zephyr/boards/st/nucleo_g431rb/nucleo_g431rb_defconfig"
west build -p always -b nucleo_g431rb bootloader/mcuboot/boot/zephyr -d build/mcuboot -- -DEXTRA_CONF_FILE=mcuboot-nucleo-g431rb.conf
west flash -d build/mcuboot --runner pyocd # (as root, with nix develop)
cd zephyr
# Package 1
west build -p always -b nucleo_g431rb samples/basic/blinky -d build/app -- -DCONFIG_BOOTLOADER_MCUBOOT=y -DCONFIG_MCUBOOT_GENERATE_UNSIGNED_IMAGE=y
west flash -d build/app --runner pyocd # (as root, with nix develop)
# Package 2
west build -p always -b nucleo_g431rb samples/basic/blinkyslow -d build/blinkyslow -- -DCONFIG_BOOTLOADER_MCUBOOT=y -DCONFIG_MCUBOOT_GENERATE_UNSIGNED_IMAGE=y
pyocd flash --target stm32g431rbtx --base-address 0x08014800 build/blinkyslow/zephyr/zephyr.signed.hex
```
+6
View File
@@ -24,11 +24,17 @@
"arm-zephyr-eabi" "arm-zephyr-eabi"
]; ];
}) })
# zephyr.west
zephyr.pythonEnv zephyr.pythonEnv
# Use zephyr.hosttools-nix to use nixpkgs built tooling instead of official Zephyr binaries # Use zephyr.hosttools-nix to use nixpkgs built tooling instead of official Zephyr binaries
zephyr.hosttools zephyr.hosttools
pkgs.cmake pkgs.cmake
pkgs.ninja pkgs.ninja
pkgs.python3Packages.jsonschema
pkgs.python3Packages.click
pkgs.pyocd
pkgs.mcuboot-imgtool
pkgs.openssl
]; ];
}; };
Submodule zephyrproject/bootloader/mcuboot added at e36d3c8d6c
+191
View File
@@ -0,0 +1,191 @@
# This is the CMakeCache file.
# For build in directory: /home/jeremy/utat-dev/zephyrproject/build/mcuboot
# It was generated by CMake: /nix/store/2xyd9pnqzg74a9xlayi54d2bcy1844n5-cmake-4.1.2/bin/cmake
# You can edit this file to change values found and used by cmake.
# If you do not want to change any of the values, simply exit the editor.
# If you do want to change a value, simply edit, save, and exit the editor.
# The syntax for the file is as follows:
# KEY:TYPE=VALUE
# KEY is the name of a variable in the cache.
# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!.
# VALUE is the current value for the KEY.
########################
# EXTERNAL cache entries
########################
//Application Binary Directory
APPLICATION_BINARY_DIR:PATH=/home/jeremy/utat-dev/zephyrproject/build/mcuboot
//The application configuration folder
APPLICATION_CONFIG_DIR:PATH=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr
//Application Source Directory
APPLICATION_SOURCE_DIR:PATH=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr
//Selected board
BOARD:STRING=nucleo_g431rb
//Main board directory for board (nucleo_g431rb)
BOARD_DIR:PATH=/home/jeremy/utat-dev/zephyrproject/zephyr/boards/st/nucleo_g431rb
//Path to a program.
BOSSAC:FILEPATH=/nix/store/nszfwxgy1r73svjq0ywnr3gf9xyyp1hs-zephyr-sdk-hosttools-1.0.1/bin/bossac
//Selected board
CACHED_BOARD:STRING=nucleo_g431rb
//Selected shield
CACHED_SHIELD:STRING=
//Selected snippet
CACHED_SNIPPET:STRING=
//Path to a program.
CCACHE_FOUND:FILEPATH=CCACHE_FOUND-NOTFOUND
//Path to a program.
CMAKE_C_COMPILER:FILEPATH=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc
//Value Computed by CMake.
CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=/home/jeremy/utat-dev/zephyrproject/build/mcuboot/CMakeFiles/pkgRedirects
//Path to a program.
CMAKE_GCOV:FILEPATH=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcov
//If desired, you can build the application usingthe configuration
// settings specified in an alternate .conf file using this parameter.
// These settings will override the settings in the applications
// .config file or its default .conf file.Multiple files may be
// listed, e.g. CONF_FILE="prj1.conf;prj2.conf" The CACHED_CONF_FILE
// is internal Zephyr variable used between CMake runs. To change
// CONF_FILE, use the CONF_FILE variable.
CONF_FILE:STRING=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/prj.conf
//Path to a program.
DTC:FILEPATH=/nix/store/nszfwxgy1r73svjq0ywnr3gf9xyyp1hs-zephyr-sdk-hosttools-1.0.1/bin/dtc
//If desired, you can build the application using the DT configuration
// settings specified in an alternate .overlay file using this
// parameter. These settings will override the settings in the
// board's .dts file. Multiple files may be listed, e.g. DTC_OVERLAY_FILE="dts1.overlay
// dts2.overlay"
DTC_OVERLAY_FILE:STRING=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/app.overlay
//No help, variable specified on the command line.
EXTRA_CONF_FILE:UNINITIALIZED=mcuboot-nucleo-g431rb.conf
//Path to a program.
GPERF:FILEPATH=GPERF-NOTFOUND
//Path to a program.
IMGTOOL:FILEPATH=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/scripts/imgtool.py
//Path to a program.
OPENOCD:FILEPATH=/nix/store/nszfwxgy1r73svjq0ywnr3gf9xyyp1hs-zephyr-sdk-hosttools-1.0.1/bin/openocd
//Path to a program.
PTY_INTERFACE:FILEPATH=PTY_INTERFACE-NOTFOUND
//True if toolchain supports libstdc++
TOOLCHAIN_HAS_GLIBCXX:BOOL=ON
//True if toolchain supports newlib
TOOLCHAIN_HAS_NEWLIB:BOOL=OFF
//True if toolchain supports picolibc
TOOLCHAIN_HAS_PICOLIBC:BOOL=ON
//Zephyr toolchain root
TOOLCHAIN_ROOT:STRING=/home/jeremy/utat-dev/zephyrproject/zephyr
//compiler used by the toolchain variant
TOOLCHAIN_VARIANT_COMPILER:STRING=gnu
//No help, variable specified on the command line.
WEST_PYTHON:UNINITIALIZED=/nix/store/ibzxfw7gxwzqz2x8dyh3a2h32r1v87wn-python3-3.13.12-env/bin/python3.13
//Zephyr base
ZEPHYR_BASE:PATH=/home/jeremy/utat-dev/zephyrproject/zephyr
//Zephyr toolchain variant
ZEPHYR_TOOLCHAIN_VARIANT:STRING=zephyr
//The directory containing a CMake configuration file for Zephyr-sdk.
Zephyr-sdk_DIR:PATH=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/cmake
//The directory containing a CMake configuration file for ZephyrAppConfiguration.
ZephyrAppConfiguration_DIR:PATH=ZephyrAppConfiguration_DIR-NOTFOUND
//The directory containing a CMake configuration file for ZephyrBuildConfiguration.
ZephyrBuildConfiguration_DIR:PATH=ZephyrBuildConfiguration_DIR-NOTFOUND
//The directory containing a CMake configuration file for Zephyr.
Zephyr_DIR:PATH=/home/jeremy/utat-dev/zephyrproject/zephyr/share/zephyr-package/cmake
########################
# INTERNAL cache entries
########################
//List of board directories for board (nucleo_g431rb)
BOARD_DIRECTORIES:INTERNAL=/home/jeremy/utat-dev/zephyrproject/zephyr/boards/st/nucleo_g431rb
//DT bindings root directories
CACHED_DTS_ROOT_BINDINGS:INTERNAL=/home/jeremy/utat-dev/zephyrproject/zephyr/dts/bindings
//This is the directory where this CMakeCache.txt was created
CMAKE_CACHEFILE_DIR:INTERNAL=/home/jeremy/utat-dev/zephyrproject/build/mcuboot
//Major version of cmake used to create the current loaded cache
CMAKE_CACHE_MAJOR_VERSION:INTERNAL=4
//Minor version of cmake used to create the current loaded cache
CMAKE_CACHE_MINOR_VERSION:INTERNAL=1
//Patch version of cmake used to create the current loaded cache
CMAKE_CACHE_PATCH_VERSION:INTERNAL=2
//Path to CMake executable.
CMAKE_COMMAND:INTERNAL=/nix/store/2xyd9pnqzg74a9xlayi54d2bcy1844n5-cmake-4.1.2/bin/cmake
//Path to cpack program executable.
CMAKE_CPACK_COMMAND:INTERNAL=/nix/store/2xyd9pnqzg74a9xlayi54d2bcy1844n5-cmake-4.1.2/bin/cpack
//Path to ctest program executable.
CMAKE_CTEST_COMMAND:INTERNAL=/nix/store/2xyd9pnqzg74a9xlayi54d2bcy1844n5-cmake-4.1.2/bin/ctest
//Name of external makefile project generator.
CMAKE_EXTRA_GENERATOR:INTERNAL=
//Name of generator.
CMAKE_GENERATOR:INTERNAL=Ninja
//Generator instance identifier.
CMAKE_GENERATOR_INSTANCE:INTERNAL=
//Name of generator platform.
CMAKE_GENERATOR_PLATFORM:INTERNAL=
//Name of generator toolset.
CMAKE_GENERATOR_TOOLSET:INTERNAL=
//Source directory with the top level CMakeLists.txt file for this
// project
CMAKE_HOME_DIRECTORY:INTERNAL=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr
//Name of CMakeLists files to read
CMAKE_LIST_FILE_NAME:INTERNAL=CMakeLists.txt
//number of local generators
CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1
//Path to CMake installation.
CMAKE_ROOT:INTERNAL=/nix/store/2xyd9pnqzg74a9xlayi54d2bcy1844n5-cmake-4.1.2/share/cmake-4.1
//Details about finding Dtc
FIND_PACKAGE_MESSAGE_DETAILS_Dtc:INTERNAL=[/nix/store/nszfwxgy1r73svjq0ywnr3gf9xyyp1hs-zephyr-sdk-hosttools-1.0.1/bin/dtc][v1.7.0(1.4.6)]
//Details about finding Python3
FIND_PACKAGE_MESSAGE_DETAILS_Python3:INTERNAL=[/nix/store/ibzxfw7gxwzqz2x8dyh3a2h32r1v87wn-python3-3.13.12-env/bin/python3.13][found components: Interpreter ][v3.13.12(3.12)]
//Zephyr hardware model version
HWM:INTERNAL=v2
//Zephyr hardware model
HWMv2:INTERNAL=True
//West
WEST:INTERNAL=/nix/store/ibzxfw7gxwzqz2x8dyh3a2h32r1v87wn-python3-3.13.12-env/bin/python3.13;-m;west
//Cached environment variable ZEPHYR_SDK_INSTALL_DIR
ZEPHYR_SDK_INSTALL_DIR:INTERNAL=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1
ZEPHYR_SHARED_TARGETS:INTERNAL=menuconfig;guiconfig;hardenconfig;traceconfig
//Compiler reason failure
_Python3_Compiler_REASON_FAILURE:INTERNAL=
//Development reason failure
_Python3_Development_REASON_FAILURE:INTERNAL=
_Python3_EXECUTABLE:INTERNAL=/nix/store/ibzxfw7gxwzqz2x8dyh3a2h32r1v87wn-python3-3.13.12-env/bin/python3.13
//Python3 Properties
_Python3_INTERPRETER_PROPERTIES:INTERNAL=Python;3;13;12;64;<none>;cpython-313-x86_64-linux-gnu.so;abi3;/nix/store/ibzxfw7gxwzqz2x8dyh3a2h32r1v87wn-python3-3.13.12-env/lib/python3.13;/nix/store/ibzxfw7gxwzqz2x8dyh3a2h32r1v87wn-python3-3.13.12-env/lib/python3.13;/nix/store/ibzxfw7gxwzqz2x8dyh3a2h32r1v87wn-python3-3.13.12-env/lib/python3.13/site-packages;/nix/store/ibzxfw7gxwzqz2x8dyh3a2h32r1v87wn-python3-3.13.12-env/lib/python3.13/site-packages
_Python3_INTERPRETER_SIGNATURE:INTERNAL=bd148e763204f8b34af6123aa3404726
//NumPy reason failure
_Python3_NumPy_REASON_FAILURE:INTERNAL=
File diff suppressed because it is too large Load Diff
@@ -0,0 +1 @@
# This file is generated by cmake for dependency checking of the CMakeCache.txt file
File diff suppressed because it is too large Load Diff
@@ -0,0 +1,360 @@
menu "acpica (/home/jeremy/utat-dev/zephyrproject/modules/lib/acpica)"
osource "$(ZEPHYR_ACPICA_KCONFIG)"
config ZEPHYR_ACPICA_MODULE
bool
default y
endmenu
menu "cmsis (/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis)"
osource "$(ZEPHYR_CMSIS_KCONFIG)"
config ZEPHYR_CMSIS_MODULE
bool
default y
endmenu
menu "cmsis-dsp (/home/jeremy/utat-dev/zephyrproject/modules/lib/cmsis-dsp)"
osource "$(ZEPHYR_CMSIS_DSP_KCONFIG)"
config ZEPHYR_CMSIS_DSP_MODULE
bool
default y
endmenu
menu "cmsis-nn (/home/jeremy/utat-dev/zephyrproject/modules/lib/cmsis-nn)"
osource "$(ZEPHYR_CMSIS_NN_KCONFIG)"
config ZEPHYR_CMSIS_NN_MODULE
bool
default y
endmenu
menu "cmsis_6 (/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6)"
osource "$(ZEPHYR_CMSIS_6_KCONFIG)"
config ZEPHYR_CMSIS_6_MODULE
bool
default y
endmenu
menu "dhara (/home/jeremy/utat-dev/zephyrproject/modules/lib/dhara)"
osource "$(ZEPHYR_DHARA_KCONFIG)"
config ZEPHYR_DHARA_MODULE
bool
default y
endmenu
menu "fatfs (/home/jeremy/utat-dev/zephyrproject/modules/fs/fatfs)"
osource "$(ZEPHYR_FATFS_KCONFIG)"
config ZEPHYR_FATFS_MODULE
bool
default y
endmenu
config ZEPHYR_ADI_MODULE
bool
default y
menu "hal_afbr (/home/jeremy/utat-dev/zephyrproject/modules/hal/afbr)"
osource "$(ZEPHYR_HAL_AFBR_KCONFIG)"
config ZEPHYR_HAL_AFBR_MODULE
bool
default y
config ZEPHYR_HAL_AFBR_MODULE_BLOBS
bool
endmenu
menu "hal_ambiq (/home/jeremy/utat-dev/zephyrproject/modules/hal/ambiq)"
osource "$(ZEPHYR_HAL_AMBIQ_KCONFIG)"
config ZEPHYR_HAL_AMBIQ_MODULE
bool
default y
endmenu
config ZEPHYR_ATMEL_MODULE
bool
default y
menu "hal_bouffalolab (/home/jeremy/utat-dev/zephyrproject/modules/hal/bouffalolab)"
osource "$(ZEPHYR_HAL_BOUFFALOLAB_KCONFIG)"
config ZEPHYR_HAL_BOUFFALOLAB_MODULE
bool
default y
config ZEPHYR_HAL_BOUFFALOLAB_MODULE_BLOBS
bool
endmenu
menu "hal_espressif (/home/jeremy/utat-dev/zephyrproject/modules/hal/espressif)"
osource "/home/jeremy/utat-dev/zephyrproject/modules/hal/espressif/zephyr/Kconfig"
config ZEPHYR_HAL_ESPRESSIF_MODULE
bool
default y
config ZEPHYR_HAL_ESPRESSIF_MODULE_BLOBS
bool
endmenu
menu "hal_ethos_u (/home/jeremy/utat-dev/zephyrproject/modules/hal/ethos_u)"
osource "$(ZEPHYR_HAL_ETHOS_U_KCONFIG)"
config ZEPHYR_HAL_ETHOS_U_MODULE
bool
default y
endmenu
menu "hal_gigadevice (/home/jeremy/utat-dev/zephyrproject/modules/hal/gigadevice)"
osource "$(ZEPHYR_HAL_GIGADEVICE_KCONFIG)"
config ZEPHYR_HAL_GIGADEVICE_MODULE
bool
default y
endmenu
menu "hal_infineon (/home/jeremy/utat-dev/zephyrproject/modules/hal/infineon)"
osource "$(ZEPHYR_HAL_INFINEON_KCONFIG)"
config ZEPHYR_HAL_INFINEON_MODULE
bool
default y
config ZEPHYR_HAL_INFINEON_MODULE_BLOBS
bool
endmenu
menu "hal_intel (/home/jeremy/utat-dev/zephyrproject/modules/hal/intel)"
osource "/home/jeremy/utat-dev/zephyrproject/modules/hal/intel/zephyr/Kconfig"
config ZEPHYR_HAL_INTEL_MODULE
bool
default y
endmenu
config ZEPHYR_MICROCHIP_MODULE
bool
default y
menu "hal_nordic (/home/jeremy/utat-dev/zephyrproject/modules/hal/nordic)"
osource "$(ZEPHYR_HAL_NORDIC_KCONFIG)"
config ZEPHYR_HAL_NORDIC_MODULE
bool
default y
config ZEPHYR_HAL_NORDIC_MODULE_BLOBS
bool
endmenu
config ZEPHYR_NUVOTON_MODULE
bool
default y
menu "hal_nxp (/home/jeremy/utat-dev/zephyrproject/modules/hal/nxp)"
osource "$(ZEPHYR_HAL_NXP_KCONFIG)"
config ZEPHYR_HAL_NXP_MODULE
bool
default y
config ZEPHYR_HAL_NXP_MODULE_BLOBS
bool
endmenu
config ZEPHYR_OPENISA_MODULE
bool
default y
config ZEPHYR_QUICKLOGIC_MODULE
bool
default y
menu "hal_realtek (/home/jeremy/utat-dev/zephyrproject/modules/hal/realtek)"
osource "$(ZEPHYR_HAL_REALTEK_KCONFIG)"
config ZEPHYR_HAL_REALTEK_MODULE
bool
default y
config ZEPHYR_HAL_REALTEK_MODULE_BLOBS
bool
endmenu
config ZEPHYR_HAL_RENESAS_MODULE
bool
default y
config ZEPHYR_HAL_RENESAS_MODULE_BLOBS
bool
menu "hal_rpi_pico (/home/jeremy/utat-dev/zephyrproject/modules/hal/rpi_pico)"
osource "$(ZEPHYR_HAL_RPI_PICO_KCONFIG)"
config ZEPHYR_HAL_RPI_PICO_MODULE
bool
default y
endmenu
menu "hal_sifli (/home/jeremy/utat-dev/zephyrproject/modules/hal/sifli)"
osource "$(ZEPHYR_HAL_SIFLI_KCONFIG)"
config ZEPHYR_HAL_SIFLI_MODULE
bool
default y
config ZEPHYR_HAL_SIFLI_MODULE_BLOBS
bool
endmenu
menu "hal_silabs (/home/jeremy/utat-dev/zephyrproject/modules/hal/silabs)"
osource "$(ZEPHYR_HAL_SILABS_KCONFIG)"
config ZEPHYR_HAL_SILABS_MODULE
bool
default y
config ZEPHYR_HAL_SILABS_MODULE_BLOBS
bool
endmenu
menu "hal_st (/home/jeremy/utat-dev/zephyrproject/modules/hal/st)"
osource "$(ZEPHYR_HAL_ST_KCONFIG)"
config ZEPHYR_HAL_ST_MODULE
bool
default y
endmenu
config ZEPHYR_HAL_STM32_MODULE
bool
default y
config ZEPHYR_HAL_STM32_MODULE_BLOBS
bool
menu "hal_tdk (/home/jeremy/utat-dev/zephyrproject/modules/hal/tdk)"
osource "$(ZEPHYR_HAL_TDK_KCONFIG)"
config ZEPHYR_HAL_TDK_MODULE
bool
default y
endmenu
menu "hal_telink (/home/jeremy/utat-dev/zephyrproject/modules/hal/telink)"
osource "/home/jeremy/utat-dev/zephyrproject/modules/hal/telink/Kconfig"
config ZEPHYR_HAL_TELINK_MODULE
bool
default y
endmenu
config ZEPHYR_TI_MODULE
bool
default y
menu "hal_wch (/home/jeremy/utat-dev/zephyrproject/modules/hal/wch)"
osource "$(ZEPHYR_HAL_WCH_KCONFIG)"
config ZEPHYR_HAL_WCH_MODULE
bool
default y
endmenu
config ZEPHYR_HAL_WURTHELEKTRONIK_MODULE
bool
default y
config ZEPHYR_XTENSA_MODULE
bool
default y
menu "hostap (/home/jeremy/utat-dev/zephyrproject/modules/lib/hostap)"
osource "$(ZEPHYR_HOSTAP_KCONFIG)"
config ZEPHYR_HOSTAP_MODULE
bool
default y
endmenu
menu "liblc3 (/home/jeremy/utat-dev/zephyrproject/modules/lib/liblc3)"
osource "$(ZEPHYR_LIBLC3_KCONFIG)"
config ZEPHYR_LIBLC3_MODULE
bool
default y
endmenu
config ZEPHYR_LIBMCTP_MODULE
bool
default y
config ZEPHYR_LIBMETAL_MODULE
bool
default y
menu "libsbc (/home/jeremy/utat-dev/zephyrproject/modules/lib/libsbc)"
osource "$(ZEPHYR_LIBSBC_KCONFIG)"
config ZEPHYR_LIBSBC_MODULE
bool
default y
endmenu
menu "littlefs (/home/jeremy/utat-dev/zephyrproject/modules/fs/littlefs)"
osource "$(ZEPHYR_LITTLEFS_KCONFIG)"
config ZEPHYR_LITTLEFS_MODULE
bool
default y
endmenu
menu "lora-basics-modem (/home/jeremy/utat-dev/zephyrproject/modules/lib/lora-basics-modem)"
osource "$(ZEPHYR_LORA_BASICS_MODEM_KCONFIG)"
config ZEPHYR_LORA_BASICS_MODEM_MODULE
bool
default y
endmenu
menu "loramac-node (/home/jeremy/utat-dev/zephyrproject/modules/lib/loramac-node)"
osource "$(ZEPHYR_LORAMAC_NODE_KCONFIG)"
config ZEPHYR_LORAMAC_NODE_MODULE
bool
default y
endmenu
menu "lvgl (/home/jeremy/utat-dev/zephyrproject/modules/lib/gui/lvgl)"
osource "/home/jeremy/utat-dev/zephyrproject/modules/lib/gui/lvgl/zephyr/Kconfig"
config ZEPHYR_LVGL_MODULE
bool
default y
endmenu
menu "mbedtls (/home/jeremy/utat-dev/zephyrproject/modules/crypto/mbedtls)"
osource "$(ZEPHYR_MBEDTLS_KCONFIG)"
config ZEPHYR_MBEDTLS_MODULE
bool
default y
endmenu
config ZEPHYR_MBEDTLS_3_6_MODULE
bool
default y
config ZEPHYR_MCUBOOT_MODULE
bool
default y
config ZEPHYR_MIPI_SYS_T_MODULE
bool
default y
config ZEPHYR_MLDSA_NATIVE_MODULE
bool
default y
menu "nanopb (/home/jeremy/utat-dev/zephyrproject/modules/lib/nanopb)"
osource "$(ZEPHYR_NANOPB_KCONFIG)"
config ZEPHYR_NANOPB_MODULE
bool
default y
endmenu
menu "nrf_wifi (/home/jeremy/utat-dev/zephyrproject/modules/lib/nrf_wifi)"
osource "$(ZEPHYR_NRF_WIFI_KCONFIG)"
config ZEPHYR_NRF_WIFI_MODULE
bool
default y
config ZEPHYR_NRF_WIFI_MODULE_BLOBS
bool
endmenu
config ZEPHYR_OPEN_AMP_MODULE
bool
default y
menu "openthread (/home/jeremy/utat-dev/zephyrproject/modules/lib/openthread)"
osource "$(ZEPHYR_OPENTHREAD_KCONFIG)"
config ZEPHYR_OPENTHREAD_MODULE
bool
default y
endmenu
menu "percepio (/home/jeremy/utat-dev/zephyrproject/modules/debug/percepio)"
osource "/home/jeremy/utat-dev/zephyrproject/modules/debug/percepio/zephyr/Kconfig"
config ZEPHYR_PERCEPIO_MODULE
bool
default y
endmenu
menu "picolibc (/home/jeremy/utat-dev/zephyrproject/modules/lib/picolibc)"
osource "/home/jeremy/utat-dev/zephyrproject/modules/lib/picolibc/zephyr/Kconfig"
config ZEPHYR_PICOLIBC_MODULE
bool
default y
endmenu
config ZEPHYR_PSA_ARCH_TESTS_MODULE
bool
default y
menu "segger (/home/jeremy/utat-dev/zephyrproject/modules/debug/segger)"
osource "$(ZEPHYR_SEGGER_KCONFIG)"
config ZEPHYR_SEGGER_MODULE
bool
default y
endmenu
config ZEPHYR_TF_M_TESTS_MODULE
bool
default y
config ZEPHYR_TF_PSA_CRYPTO_MODULE
bool
default y
menu "trusted-firmware-a (/home/jeremy/utat-dev/zephyrproject/modules/tee/tf-a/trusted-firmware-a)"
osource "$(ZEPHYR_TRUSTED_FIRMWARE_A_KCONFIG)"
config ZEPHYR_TRUSTED_FIRMWARE_A_MODULE
bool
default y
endmenu
menu "trusted-firmware-m (/home/jeremy/utat-dev/zephyrproject/modules/tee/tf-m/trusted-firmware-m)"
osource "$(ZEPHYR_TRUSTED_FIRMWARE_M_KCONFIG)"
config ZEPHYR_TRUSTED_FIRMWARE_M_MODULE
bool
default y
endmenu
menu "uoscore-uedhoc (/home/jeremy/utat-dev/zephyrproject/modules/lib/uoscore-uedhoc)"
osource "$(ZEPHYR_UOSCORE_UEDHOC_KCONFIG)"
config ZEPHYR_UOSCORE_UEDHOC_MODULE
bool
default y
endmenu
menu "zcbor (/home/jeremy/utat-dev/zephyrproject/modules/lib/zcbor)"
osource "$(ZEPHYR_ZCBOR_KCONFIG)"
config ZEPHYR_ZCBOR_MODULE
bool
default y
endmenu
config ZEPHYR_NRF_HW_MODELS_MODULE
bool
default y
@@ -0,0 +1,195 @@
config ZEPHYR_ACPICA_MODULE
bool
default y
config ZEPHYR_CMSIS_MODULE
bool
default y
config ZEPHYR_CMSIS_DSP_MODULE
bool
default y
config ZEPHYR_CMSIS_NN_MODULE
bool
default y
config ZEPHYR_CMSIS_6_MODULE
bool
default y
config ZEPHYR_DHARA_MODULE
bool
default y
config ZEPHYR_FATFS_MODULE
bool
default y
config ZEPHYR_ADI_MODULE
bool
default y
config ZEPHYR_HAL_AFBR_MODULE
bool
default y
config ZEPHYR_HAL_AMBIQ_MODULE
bool
default y
config ZEPHYR_ATMEL_MODULE
bool
default y
config ZEPHYR_HAL_BOUFFALOLAB_MODULE
bool
default y
config ZEPHYR_HAL_ESPRESSIF_MODULE
bool
default y
config ZEPHYR_HAL_ETHOS_U_MODULE
bool
default y
config ZEPHYR_HAL_GIGADEVICE_MODULE
bool
default y
config ZEPHYR_HAL_INFINEON_MODULE
bool
default y
config ZEPHYR_HAL_INTEL_MODULE
bool
default y
config ZEPHYR_MICROCHIP_MODULE
bool
default y
config ZEPHYR_HAL_NORDIC_MODULE
bool
default y
config ZEPHYR_NUVOTON_MODULE
bool
default y
config ZEPHYR_HAL_NXP_MODULE
bool
default y
config ZEPHYR_OPENISA_MODULE
bool
default y
config ZEPHYR_QUICKLOGIC_MODULE
bool
default y
config ZEPHYR_HAL_REALTEK_MODULE
bool
default y
config ZEPHYR_HAL_RENESAS_MODULE
bool
default y
config ZEPHYR_HAL_RPI_PICO_MODULE
bool
default y
config ZEPHYR_HAL_SIFLI_MODULE
bool
default y
config ZEPHYR_HAL_SILABS_MODULE
bool
default y
config ZEPHYR_HAL_ST_MODULE
bool
default y
config ZEPHYR_HAL_STM32_MODULE
bool
default y
config ZEPHYR_HAL_TDK_MODULE
bool
default y
config ZEPHYR_HAL_TELINK_MODULE
bool
default y
config ZEPHYR_TI_MODULE
bool
default y
config ZEPHYR_HAL_WCH_MODULE
bool
default y
config ZEPHYR_HAL_WURTHELEKTRONIK_MODULE
bool
default y
config ZEPHYR_XTENSA_MODULE
bool
default y
config ZEPHYR_HOSTAP_MODULE
bool
default y
config ZEPHYR_LIBLC3_MODULE
bool
default y
config ZEPHYR_LIBMCTP_MODULE
bool
default y
config ZEPHYR_LIBMETAL_MODULE
bool
default y
config ZEPHYR_LIBSBC_MODULE
bool
default y
config ZEPHYR_LITTLEFS_MODULE
bool
default y
config ZEPHYR_LORA_BASICS_MODEM_MODULE
bool
default y
config ZEPHYR_LORAMAC_NODE_MODULE
bool
default y
config ZEPHYR_LVGL_MODULE
bool
default y
config ZEPHYR_MBEDTLS_MODULE
bool
default y
config ZEPHYR_MBEDTLS_3_6_MODULE
bool
default y
config ZEPHYR_MCUBOOT_MODULE
bool
default y
config ZEPHYR_MIPI_SYS_T_MODULE
bool
default y
config ZEPHYR_MLDSA_NATIVE_MODULE
bool
default y
config ZEPHYR_NANOPB_MODULE
bool
default y
config ZEPHYR_NRF_WIFI_MODULE
bool
default y
config ZEPHYR_OPEN_AMP_MODULE
bool
default y
config ZEPHYR_OPENTHREAD_MODULE
bool
default y
config ZEPHYR_PERCEPIO_MODULE
bool
default y
config ZEPHYR_PICOLIBC_MODULE
bool
default y
config ZEPHYR_PSA_ARCH_TESTS_MODULE
bool
default y
config ZEPHYR_SEGGER_MODULE
bool
default y
config ZEPHYR_TF_M_TESTS_MODULE
bool
default y
config ZEPHYR_TF_PSA_CRYPTO_MODULE
bool
default y
config ZEPHYR_TRUSTED_FIRMWARE_A_MODULE
bool
default y
config ZEPHYR_TRUSTED_FIRMWARE_M_MODULE
bool
default y
config ZEPHYR_UOSCORE_UEDHOC_MODULE
bool
default y
config ZEPHYR_ZCBOR_MODULE
bool
default y
config ZEPHYR_NRF_HW_MODELS_MODULE
bool
default y
@@ -0,0 +1,12 @@
# Load Zephyr Arch Kconfig descriptions.
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/arch/rx/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/arch/x86/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/arch/xtensa/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/arch/sparc/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/arch/riscv/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/arch/posix/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/arch/openrisc/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/arch/mips/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm64/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arc/Kconfig"
@@ -0,0 +1,2 @@
# Load Zephyr board Kconfig descriptions.
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/boards/st/nucleo_g431rb/Kconfig"
@@ -0,0 +1,2 @@
# Load Zephyr board defconfig descriptions.
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/boards/st/nucleo_g431rb/Kconfig.defconfig"
@@ -0,0 +1,2 @@
# Load board Kconfig descriptions.
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/boards/st/nucleo_g431rb/Kconfig.nucleo_g431rb"
@@ -0,0 +1,2 @@
# Load Sysbuild board Kconfig descriptions.
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/boards/st/nucleo_g431rb/Kconfig.sysbuild"
@@ -0,0 +1,66 @@
set(kconfig_env_dirs)
list(APPEND kconfig_env_dirs ZEPHYR_ACPICA_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/lib/acpica)
list(APPEND kconfig_env_dirs ZEPHYR_CMSIS_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis)
list(APPEND kconfig_env_dirs ZEPHYR_CMSIS_DSP_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/lib/cmsis-dsp)
list(APPEND kconfig_env_dirs ZEPHYR_CMSIS_NN_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/lib/cmsis-nn)
list(APPEND kconfig_env_dirs ZEPHYR_CMSIS_6_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6)
list(APPEND kconfig_env_dirs ZEPHYR_DHARA_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/lib/dhara)
list(APPEND kconfig_env_dirs ZEPHYR_FATFS_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/fs/fatfs)
list(APPEND kconfig_env_dirs ZEPHYR_ADI_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/hal/adi)
list(APPEND kconfig_env_dirs ZEPHYR_HAL_AFBR_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/hal/afbr)
list(APPEND kconfig_env_dirs ZEPHYR_HAL_AMBIQ_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/hal/ambiq)
list(APPEND kconfig_env_dirs ZEPHYR_ATMEL_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/hal/atmel)
list(APPEND kconfig_env_dirs ZEPHYR_HAL_BOUFFALOLAB_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/hal/bouffalolab)
list(APPEND kconfig_env_dirs ZEPHYR_HAL_ESPRESSIF_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/hal/espressif)
list(APPEND kconfig_env_dirs ZEPHYR_HAL_ETHOS_U_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/hal/ethos_u)
list(APPEND kconfig_env_dirs ZEPHYR_HAL_GIGADEVICE_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/hal/gigadevice)
list(APPEND kconfig_env_dirs ZEPHYR_HAL_INFINEON_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/hal/infineon)
list(APPEND kconfig_env_dirs ZEPHYR_HAL_INTEL_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/hal/intel)
list(APPEND kconfig_env_dirs ZEPHYR_MICROCHIP_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/hal/microchip)
list(APPEND kconfig_env_dirs ZEPHYR_HAL_NORDIC_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/hal/nordic)
list(APPEND kconfig_env_dirs ZEPHYR_NUVOTON_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/hal/nuvoton)
list(APPEND kconfig_env_dirs ZEPHYR_HAL_NXP_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/hal/nxp)
list(APPEND kconfig_env_dirs ZEPHYR_OPENISA_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/hal/openisa)
list(APPEND kconfig_env_dirs ZEPHYR_QUICKLOGIC_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/hal/quicklogic)
list(APPEND kconfig_env_dirs ZEPHYR_HAL_REALTEK_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/hal/realtek)
list(APPEND kconfig_env_dirs ZEPHYR_HAL_RENESAS_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/hal/renesas)
list(APPEND kconfig_env_dirs ZEPHYR_HAL_RPI_PICO_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/hal/rpi_pico)
list(APPEND kconfig_env_dirs ZEPHYR_HAL_SIFLI_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/hal/sifli)
list(APPEND kconfig_env_dirs ZEPHYR_HAL_SILABS_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/hal/silabs)
list(APPEND kconfig_env_dirs ZEPHYR_HAL_ST_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/hal/st)
list(APPEND kconfig_env_dirs ZEPHYR_HAL_STM32_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32)
list(APPEND kconfig_env_dirs ZEPHYR_HAL_TDK_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/hal/tdk)
list(APPEND kconfig_env_dirs ZEPHYR_HAL_TELINK_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/hal/telink)
list(APPEND kconfig_env_dirs ZEPHYR_TI_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/hal/ti)
list(APPEND kconfig_env_dirs ZEPHYR_HAL_WCH_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/hal/wch)
list(APPEND kconfig_env_dirs ZEPHYR_HAL_WURTHELEKTRONIK_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/hal/wurthelektronik)
list(APPEND kconfig_env_dirs ZEPHYR_XTENSA_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/hal/xtensa)
list(APPEND kconfig_env_dirs ZEPHYR_HOSTAP_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/lib/hostap)
list(APPEND kconfig_env_dirs ZEPHYR_LIBLC3_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/lib/liblc3)
list(APPEND kconfig_env_dirs ZEPHYR_LIBMCTP_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/lib/libmctp)
list(APPEND kconfig_env_dirs ZEPHYR_LIBMETAL_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/hal/libmetal)
list(APPEND kconfig_env_dirs ZEPHYR_LIBSBC_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/lib/libsbc)
list(APPEND kconfig_env_dirs ZEPHYR_LITTLEFS_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/fs/littlefs)
list(APPEND kconfig_env_dirs ZEPHYR_LORA_BASICS_MODEM_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/lib/lora-basics-modem)
list(APPEND kconfig_env_dirs ZEPHYR_LORAMAC_NODE_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/lib/loramac-node)
list(APPEND kconfig_env_dirs ZEPHYR_LVGL_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/lib/gui/lvgl)
list(APPEND kconfig_env_dirs ZEPHYR_MBEDTLS_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/crypto/mbedtls)
list(APPEND kconfig_env_dirs ZEPHYR_MBEDTLS_3_6_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/crypto/mbedtls-3.6)
list(APPEND kconfig_env_dirs ZEPHYR_MCUBOOT_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot)
list(APPEND kconfig_env_dirs ZEPHYR_MIPI_SYS_T_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/debug/mipi-sys-t)
list(APPEND kconfig_env_dirs ZEPHYR_MLDSA_NATIVE_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/crypto/mldsa-native)
list(APPEND kconfig_env_dirs ZEPHYR_NANOPB_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/lib/nanopb)
list(APPEND kconfig_env_dirs ZEPHYR_NRF_WIFI_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/lib/nrf_wifi)
list(APPEND kconfig_env_dirs ZEPHYR_OPEN_AMP_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/lib/open-amp)
list(APPEND kconfig_env_dirs ZEPHYR_OPENTHREAD_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/lib/openthread)
list(APPEND kconfig_env_dirs ZEPHYR_PERCEPIO_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/debug/percepio)
list(APPEND kconfig_env_dirs ZEPHYR_PICOLIBC_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/lib/picolibc)
list(APPEND kconfig_env_dirs ZEPHYR_PSA_ARCH_TESTS_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/tee/tf-m/psa-arch-tests)
list(APPEND kconfig_env_dirs ZEPHYR_SEGGER_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/debug/segger)
list(APPEND kconfig_env_dirs ZEPHYR_TF_M_TESTS_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/tee/tf-m/tf-m-tests)
list(APPEND kconfig_env_dirs ZEPHYR_TF_PSA_CRYPTO_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/crypto/tf-psa-crypto)
list(APPEND kconfig_env_dirs ZEPHYR_TRUSTED_FIRMWARE_A_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/tee/tf-a/trusted-firmware-a)
list(APPEND kconfig_env_dirs ZEPHYR_TRUSTED_FIRMWARE_M_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/tee/tf-m/trusted-firmware-m)
list(APPEND kconfig_env_dirs ZEPHYR_UOSCORE_UEDHOC_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/lib/uoscore-uedhoc)
list(APPEND kconfig_env_dirs ZEPHYR_ZCBOR_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/lib/zcbor)
list(APPEND kconfig_env_dirs ZEPHYR_NRF_HW_MODELS_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/bsim_hw_models/nrf_hw_models)
@@ -0,0 +1,65 @@
ZEPHYR_ACPICA_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/lib/acpica
ZEPHYR_CMSIS_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis
ZEPHYR_CMSIS_DSP_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/lib/cmsis-dsp
ZEPHYR_CMSIS_NN_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/lib/cmsis-nn
ZEPHYR_CMSIS_6_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6
ZEPHYR_DHARA_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/lib/dhara
ZEPHYR_FATFS_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/fs/fatfs
ZEPHYR_ADI_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/hal/adi
ZEPHYR_HAL_AFBR_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/hal/afbr
ZEPHYR_HAL_AMBIQ_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/hal/ambiq
ZEPHYR_ATMEL_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/hal/atmel
ZEPHYR_HAL_BOUFFALOLAB_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/hal/bouffalolab
ZEPHYR_HAL_ESPRESSIF_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/hal/espressif
ZEPHYR_HAL_ETHOS_U_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/hal/ethos_u
ZEPHYR_HAL_GIGADEVICE_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/hal/gigadevice
ZEPHYR_HAL_INFINEON_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/hal/infineon
ZEPHYR_HAL_INTEL_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/hal/intel
ZEPHYR_MICROCHIP_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/hal/microchip
ZEPHYR_HAL_NORDIC_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/hal/nordic
ZEPHYR_NUVOTON_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/hal/nuvoton
ZEPHYR_HAL_NXP_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/hal/nxp
ZEPHYR_OPENISA_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/hal/openisa
ZEPHYR_QUICKLOGIC_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/hal/quicklogic
ZEPHYR_HAL_REALTEK_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/hal/realtek
ZEPHYR_HAL_RENESAS_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/hal/renesas
ZEPHYR_HAL_RPI_PICO_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/hal/rpi_pico
ZEPHYR_HAL_SIFLI_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/hal/sifli
ZEPHYR_HAL_SILABS_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/hal/silabs
ZEPHYR_HAL_ST_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/hal/st
ZEPHYR_HAL_STM32_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32
ZEPHYR_HAL_TDK_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/hal/tdk
ZEPHYR_HAL_TELINK_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/hal/telink
ZEPHYR_TI_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/hal/ti
ZEPHYR_HAL_WCH_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/hal/wch
ZEPHYR_HAL_WURTHELEKTRONIK_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/hal/wurthelektronik
ZEPHYR_XTENSA_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/hal/xtensa
ZEPHYR_HOSTAP_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/lib/hostap
ZEPHYR_LIBLC3_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/lib/liblc3
ZEPHYR_LIBMCTP_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/lib/libmctp
ZEPHYR_LIBMETAL_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/hal/libmetal
ZEPHYR_LIBSBC_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/lib/libsbc
ZEPHYR_LITTLEFS_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/fs/littlefs
ZEPHYR_LORA_BASICS_MODEM_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/lib/lora-basics-modem
ZEPHYR_LORAMAC_NODE_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/lib/loramac-node
ZEPHYR_LVGL_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/lib/gui/lvgl
ZEPHYR_MBEDTLS_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/crypto/mbedtls
ZEPHYR_MBEDTLS_3_6_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/crypto/mbedtls-3.6
ZEPHYR_MCUBOOT_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot
ZEPHYR_MIPI_SYS_T_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/debug/mipi-sys-t
ZEPHYR_MLDSA_NATIVE_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/crypto/mldsa-native
ZEPHYR_NANOPB_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/lib/nanopb
ZEPHYR_NRF_WIFI_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/lib/nrf_wifi
ZEPHYR_OPEN_AMP_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/lib/open-amp
ZEPHYR_OPENTHREAD_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/lib/openthread
ZEPHYR_PERCEPIO_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/debug/percepio
ZEPHYR_PICOLIBC_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/lib/picolibc
ZEPHYR_PSA_ARCH_TESTS_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/tee/tf-m/psa-arch-tests
ZEPHYR_SEGGER_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/debug/segger
ZEPHYR_TF_M_TESTS_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/tee/tf-m/tf-m-tests
ZEPHYR_TF_PSA_CRYPTO_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/crypto/tf-psa-crypto
ZEPHYR_TRUSTED_FIRMWARE_A_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/tee/tf-a/trusted-firmware-a
ZEPHYR_TRUSTED_FIRMWARE_M_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/tee/tf-m/trusted-firmware-m
ZEPHYR_UOSCORE_UEDHOC_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/lib/uoscore-uedhoc
ZEPHYR_ZCBOR_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/lib/zcbor
ZEPHYR_NRF_HW_MODELS_MODULE_DIR=/home/jeremy/utat-dev/zephyrproject/modules/bsim_hw_models/nrf_hw_models
@@ -0,0 +1,131 @@
# Load Zephyr SoC Kconfig descriptions.
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/xlnx/zynqmp/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/xlnx/zynq7000/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/xlnx/versalnet/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/xlnx/versal2/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/xlnx/versal/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/xen/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/wch/ch32v/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/ti/simplelink/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/ti/mspm0/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/ti/lm3s6965/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/ti/k3/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/telink/tlsr/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/syna/sr100/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/starfive/jh71xx/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/snps/qemu_arc/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/snps/nsim/arc_v/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/snps/nsim/arc_classic/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/snps/hsdk4xd/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/snps/hsdk/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/snps/emsk/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/snps/emsdp/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/snps/arc_iot/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/silabs/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/sifli/sf32/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/sifive/sifive_freedom/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/sensry/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/rockchip/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/renode/riscv_virtual/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/renode/cortex_r8_virtual/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/renesas/smartbond/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/renesas/rz/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/renesas/rx/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/renesas/rcar/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/renesas/ra/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/realtek/fingerprint/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/realtek/ec/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/realtek/bee/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/realtek/ameba/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/raspberrypi/rpi_pico/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/quicklogic/eos_s3/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/qemu/virt_riscv/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/qemu/or1k/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/qemu/malta/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/openisa/rv32m1/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/openhwgroup/cva6/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/oct/osd32mp15x/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/nxp/s32/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/nxp/rw/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/nxp/mcx/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/nxp/lpc/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/nxp/layerscape/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/nxp/kinetis/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/nxp/imxrt/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/nxp/imx/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/nuvoton/numicro/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/nuvoton/numaker/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/nuvoton/npcx/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/nuvoton/npcm/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/nordic/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/neorv32/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/native/inf_clock/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/microchip/sam/sama7/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/microchip/sam/sam_d5x_e5x/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/microchip/pic64/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/microchip/pic32c/pic32cz_ca/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/microchip/pic32c/pic32cx_sg/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/microchip/pic32c/pic32cm_sg_gc/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/microchip/pic32c/pic32cm_pl/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/microchip/pic32c/pic32cm_jh/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/microchip/pic32c/pic32ck_sg_gc/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/microchip/miv/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/microchip/mec/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/mediatek/mt8xxx/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/lowrisc/opentitan/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/litex/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/ite/ec/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/intel/wildcat_lake/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/intel/raptor_lake/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/intel/panther_lake/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/intel/lakemont/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/intel/intel_socfpga_std/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/intel/intel_socfpga/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/intel/intel_niosv/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/intel/intel_ish/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/intel/intel_adsp/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/intel/elkhart_lake/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/intel/atom/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/intel/apollo_lake/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/intel/alder_lake/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/infineon/psoc4/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/infineon/edge/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/infineon/cat3/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/infineon/cat1c/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/infineon/cat1b/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/infineon/cat1a/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/gd/gd32/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/gaisler/leon3/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/gaisler/gr716a/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/focaltech/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/espressif/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/ene/kb1200/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/ene/kb106x/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/elan/em32f967/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/egis/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/efinix/sapphire/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/cdns/xtensa_sample_controller/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/cdns/swerv/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/cdns/sample_controller32/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/cdns/dc233c/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/brcm/bcmvk/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/brcm/bcm2712/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/brcm/bcm2711/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/blackberry/qnxhv_vm/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/bflb/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/atmel/sam0/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/atmel/sam/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/aspeed/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/arm/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/arm/beetle/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/antmicro/myra/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/andestech/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/amd/acp_7_0/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/amd/acp_6_0/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/ambiq/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/allwinner/sun8i_h3/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/alif/ensemble/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/alif/balletto/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/aesc/Kconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/adi/max32/Kconfig"
@@ -0,0 +1,131 @@
# Load Zephyr SoC defconfig descriptions.
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/xlnx/zynqmp/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/xlnx/zynq7000/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/xlnx/versalnet/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/xlnx/versal2/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/xlnx/versal/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/xen/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/wch/ch32v/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/ti/simplelink/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/ti/mspm0/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/ti/lm3s6965/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/ti/k3/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/telink/tlsr/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/syna/sr100/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/starfive/jh71xx/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/snps/qemu_arc/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/snps/nsim/arc_v/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/snps/nsim/arc_classic/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/snps/hsdk4xd/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/snps/hsdk/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/snps/emsk/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/snps/emsdp/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/snps/arc_iot/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/silabs/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/sifli/sf32/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/sifive/sifive_freedom/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/sensry/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/rockchip/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/renode/riscv_virtual/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/renode/cortex_r8_virtual/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/renesas/smartbond/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/renesas/rz/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/renesas/rx/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/renesas/rcar/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/renesas/ra/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/realtek/fingerprint/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/realtek/ec/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/realtek/bee/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/realtek/ameba/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/raspberrypi/rpi_pico/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/quicklogic/eos_s3/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/qemu/virt_riscv/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/qemu/or1k/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/qemu/malta/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/openisa/rv32m1/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/openhwgroup/cva6/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/oct/osd32mp15x/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/nxp/s32/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/nxp/rw/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/nxp/mcx/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/nxp/lpc/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/nxp/layerscape/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/nxp/kinetis/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/nxp/imxrt/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/nxp/imx/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/nuvoton/numicro/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/nuvoton/numaker/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/nuvoton/npcx/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/nuvoton/npcm/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/nordic/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/neorv32/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/native/inf_clock/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/microchip/sam/sama7/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/microchip/sam/sam_d5x_e5x/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/microchip/pic64/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/microchip/pic32c/pic32cz_ca/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/microchip/pic32c/pic32cx_sg/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/microchip/pic32c/pic32cm_sg_gc/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/microchip/pic32c/pic32cm_pl/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/microchip/pic32c/pic32cm_jh/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/microchip/pic32c/pic32ck_sg_gc/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/microchip/miv/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/microchip/mec/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/mediatek/mt8xxx/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/lowrisc/opentitan/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/litex/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/ite/ec/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/intel/wildcat_lake/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/intel/raptor_lake/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/intel/panther_lake/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/intel/lakemont/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/intel/intel_socfpga_std/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/intel/intel_socfpga/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/intel/intel_niosv/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/intel/intel_ish/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/intel/intel_adsp/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/intel/elkhart_lake/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/intel/atom/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/intel/apollo_lake/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/intel/alder_lake/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/infineon/psoc4/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/infineon/edge/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/infineon/cat3/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/infineon/cat1c/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/infineon/cat1b/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/infineon/cat1a/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/gd/gd32/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/gaisler/leon3/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/gaisler/gr716a/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/focaltech/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/espressif/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/ene/kb1200/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/ene/kb106x/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/elan/em32f967/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/egis/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/efinix/sapphire/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/cdns/xtensa_sample_controller/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/cdns/swerv/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/cdns/sample_controller32/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/cdns/dc233c/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/brcm/bcmvk/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/brcm/bcm2712/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/brcm/bcm2711/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/blackberry/qnxhv_vm/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/bflb/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/atmel/sam0/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/atmel/sam/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/aspeed/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/arm/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/arm/beetle/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/antmicro/myra/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/andestech/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/amd/acp_7_0/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/amd/acp_6_0/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/ambiq/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/allwinner/sun8i_h3/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/alif/ensemble/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/alif/balletto/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/aesc/Kconfig.defconfig"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/adi/max32/Kconfig.defconfig"
@@ -0,0 +1,131 @@
# Load SoC Kconfig descriptions.
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/xlnx/zynqmp/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/xlnx/zynq7000/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/xlnx/versalnet/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/xlnx/versal2/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/xlnx/versal/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/xen/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/wch/ch32v/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/ti/simplelink/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/ti/mspm0/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/ti/lm3s6965/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/ti/k3/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/telink/tlsr/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/syna/sr100/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/starfive/jh71xx/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/snps/qemu_arc/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/snps/nsim/arc_v/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/snps/nsim/arc_classic/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/snps/hsdk4xd/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/snps/hsdk/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/snps/emsk/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/snps/emsdp/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/snps/arc_iot/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/silabs/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/sifli/sf32/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/sifive/sifive_freedom/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/sensry/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/rockchip/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/renode/riscv_virtual/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/renode/cortex_r8_virtual/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/renesas/smartbond/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/renesas/rz/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/renesas/rx/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/renesas/rcar/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/renesas/ra/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/realtek/fingerprint/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/realtek/ec/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/realtek/bee/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/realtek/ameba/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/raspberrypi/rpi_pico/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/quicklogic/eos_s3/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/qemu/virt_riscv/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/qemu/or1k/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/qemu/malta/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/openisa/rv32m1/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/openhwgroup/cva6/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/oct/osd32mp15x/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/nxp/s32/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/nxp/rw/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/nxp/mcx/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/nxp/lpc/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/nxp/layerscape/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/nxp/kinetis/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/nxp/imxrt/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/nxp/imx/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/nuvoton/numicro/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/nuvoton/numaker/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/nuvoton/npcx/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/nuvoton/npcm/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/nordic/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/neorv32/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/native/inf_clock/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/microchip/sam/sama7/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/microchip/sam/sam_d5x_e5x/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/microchip/pic64/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/microchip/pic32c/pic32cz_ca/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/microchip/pic32c/pic32cx_sg/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/microchip/pic32c/pic32cm_sg_gc/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/microchip/pic32c/pic32cm_pl/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/microchip/pic32c/pic32cm_jh/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/microchip/pic32c/pic32ck_sg_gc/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/microchip/miv/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/microchip/mec/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/mediatek/mt8xxx/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/lowrisc/opentitan/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/litex/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/ite/ec/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/intel/wildcat_lake/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/intel/raptor_lake/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/intel/panther_lake/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/intel/lakemont/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/intel/intel_socfpga_std/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/intel/intel_socfpga/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/intel/intel_niosv/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/intel/intel_ish/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/intel/intel_adsp/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/intel/elkhart_lake/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/intel/atom/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/intel/apollo_lake/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/intel/alder_lake/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/infineon/psoc4/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/infineon/edge/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/infineon/cat3/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/infineon/cat1c/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/infineon/cat1b/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/infineon/cat1a/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/gd/gd32/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/gaisler/leon3/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/gaisler/gr716a/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/focaltech/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/espressif/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/ene/kb1200/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/ene/kb106x/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/elan/em32f967/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/egis/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/efinix/sapphire/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/cdns/xtensa_sample_controller/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/cdns/swerv/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/cdns/sample_controller32/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/cdns/dc233c/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/brcm/bcmvk/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/brcm/bcm2712/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/brcm/bcm2711/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/blackberry/qnxhv_vm/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/bflb/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/atmel/sam0/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/atmel/sam/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/aspeed/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/arm/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/arm/beetle/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/antmicro/myra/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/andestech/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/amd/acp_7_0/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/amd/acp_6_0/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/ambiq/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/allwinner/sun8i_h3/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/alif/ensemble/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/alif/balletto/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/aesc/Kconfig.soc"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/adi/max32/Kconfig.soc"
@@ -0,0 +1,131 @@
# Load Sysbuild SoC Kconfig descriptions.
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/xlnx/zynqmp/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/xlnx/zynq7000/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/xlnx/versalnet/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/xlnx/versal2/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/xlnx/versal/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/xen/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/wch/ch32v/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/ti/simplelink/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/ti/mspm0/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/ti/lm3s6965/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/ti/k3/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/telink/tlsr/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/syna/sr100/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/starfive/jh71xx/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/snps/qemu_arc/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/snps/nsim/arc_v/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/snps/nsim/arc_classic/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/snps/hsdk4xd/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/snps/hsdk/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/snps/emsk/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/snps/emsdp/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/snps/arc_iot/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/silabs/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/sifli/sf32/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/sifive/sifive_freedom/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/sensry/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/rockchip/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/renode/riscv_virtual/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/renode/cortex_r8_virtual/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/renesas/smartbond/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/renesas/rz/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/renesas/rx/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/renesas/rcar/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/renesas/ra/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/realtek/fingerprint/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/realtek/ec/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/realtek/bee/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/realtek/ameba/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/raspberrypi/rpi_pico/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/quicklogic/eos_s3/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/qemu/virt_riscv/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/qemu/or1k/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/qemu/malta/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/openisa/rv32m1/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/openhwgroup/cva6/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/oct/osd32mp15x/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/nxp/s32/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/nxp/rw/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/nxp/mcx/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/nxp/lpc/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/nxp/layerscape/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/nxp/kinetis/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/nxp/imxrt/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/nxp/imx/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/nuvoton/numicro/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/nuvoton/numaker/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/nuvoton/npcx/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/nuvoton/npcm/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/nordic/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/neorv32/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/native/inf_clock/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/microchip/sam/sama7/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/microchip/sam/sam_d5x_e5x/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/microchip/pic64/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/microchip/pic32c/pic32cz_ca/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/microchip/pic32c/pic32cx_sg/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/microchip/pic32c/pic32cm_sg_gc/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/microchip/pic32c/pic32cm_pl/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/microchip/pic32c/pic32cm_jh/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/microchip/pic32c/pic32ck_sg_gc/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/microchip/miv/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/microchip/mec/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/mediatek/mt8xxx/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/lowrisc/opentitan/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/litex/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/ite/ec/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/intel/wildcat_lake/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/intel/raptor_lake/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/intel/panther_lake/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/intel/lakemont/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/intel/intel_socfpga_std/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/intel/intel_socfpga/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/intel/intel_niosv/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/intel/intel_ish/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/intel/intel_adsp/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/intel/elkhart_lake/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/intel/atom/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/intel/apollo_lake/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/intel/alder_lake/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/infineon/psoc4/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/infineon/edge/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/infineon/cat3/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/infineon/cat1c/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/infineon/cat1b/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/infineon/cat1a/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/gd/gd32/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/gaisler/leon3/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/gaisler/gr716a/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/focaltech/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/espressif/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/ene/kb1200/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/ene/kb106x/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/elan/em32f967/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/egis/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/efinix/sapphire/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/cdns/xtensa_sample_controller/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/cdns/swerv/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/cdns/sample_controller32/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/cdns/dc233c/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/brcm/bcmvk/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/brcm/bcm2712/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/brcm/bcm2711/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/blackberry/qnxhv_vm/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/bflb/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/atmel/sam0/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/atmel/sam/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/aspeed/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/arm/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/arm/beetle/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/antmicro/myra/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/andestech/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/amd/acp_7_0/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/amd/acp_6_0/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/ambiq/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/allwinner/sun8i_h3/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/alif/ensemble/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/alif/balletto/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/aesc/Kconfig.sysbuild"
osource "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/adi/max32/Kconfig.sysbuild"
@@ -0,0 +1,6 @@
west:
command: /nix/store/1hhzbgg5hqhpw2c3gk98myzr6fjlfcja-python3.13-west-1.5.0/bin/west
build -p always -b nucleo_g431rb bootloader/mcuboot/boot/zephyr -d build/mcuboot
-- -DEXTRA_CONF_FILE=mcuboot-nucleo-g431rb.conf
topdir: /home/jeremy/utat-dev/zephyrproject
version: 1.5.0
@@ -0,0 +1 @@
"mcuboot":"/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot":"/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/sysbuild"
Binary file not shown.
File diff suppressed because it is too large Load Diff
File diff suppressed because one or more lines are too long
@@ -0,0 +1,18 @@
# WARNING. THIS FILE IS AUTO-GENERATED. DO NOT MODIFY!
#
# This file contains build system settings derived from your snippets.
# Its contents are an implementation detail that should not be used outside
# of Zephyr's snippets CMake module.
#
# See the Snippets guide in the Zephyr documentation for more information.
###############################################################################
# Global information about all snippets.
# The name of every snippet that was discovered.
set(SNIPPET_NAMES "bt-ll-sw-split" "cdc-acm-console" "espressif-flash-128M" "espressif-flash-16M" "espressif-flash-2M" "espressif-flash-32M" "espressif-flash-4M" "espressif-flash-64M" "espressif-flash-8M" "espressif-psram-2M" "espressif-psram-4M" "espressif-psram-8M" "espressif-psram-reloc" "espressif-psram-wifi" "hci-uart-native-sim" "nordic-flpr" "nordic-flpr-xip" "nordic-log-stm" "nordic-log-stm-dict" "nordic-log-stm-tpiu-dict" "nordic-ppr" "nordic-ppr-xip" "nus-console" "ram-console" "ram-tracing" "rp2-boot-mode-retention" "rtt-console" "rtt-tracing" "semihost-tracing" "serial-console" "silabs-pti" "slot1-partition" "socketcan-native-sim" "usbip-native-sim" "video-sw-generator" "wifi-credentials" "wifi-enterprise" "wifi-ip" "wifi-ipv4" "wifi-ipv6" "xen_dom0" "xiao-serial-console")
# The paths to all the snippet.yml files. One snippet
# can have multiple snippet.yml files.
set(SNIPPET_PATHS "/home/jeremy/utat-dev/zephyrproject/zephyr/snippets/bt-ll-sw-split/snippet.yml" "/home/jeremy/utat-dev/zephyrproject/zephyr/snippets/cdc-acm-console/snippet.yml" "/home/jeremy/utat-dev/zephyrproject/zephyr/snippets/espressif/flash-128M/snippet.yml" "/home/jeremy/utat-dev/zephyrproject/zephyr/snippets/espressif/flash-16M/snippet.yml" "/home/jeremy/utat-dev/zephyrproject/zephyr/snippets/espressif/flash-2M/snippet.yml" "/home/jeremy/utat-dev/zephyrproject/zephyr/snippets/espressif/flash-32M/snippet.yml" "/home/jeremy/utat-dev/zephyrproject/zephyr/snippets/espressif/flash-4M/snippet.yml" "/home/jeremy/utat-dev/zephyrproject/zephyr/snippets/espressif/flash-64M/snippet.yml" "/home/jeremy/utat-dev/zephyrproject/zephyr/snippets/espressif/flash-8M/snippet.yml" "/home/jeremy/utat-dev/zephyrproject/zephyr/snippets/espressif/psram-2M/snippet.yml" "/home/jeremy/utat-dev/zephyrproject/zephyr/snippets/espressif/psram-4M/snippet.yml" "/home/jeremy/utat-dev/zephyrproject/zephyr/snippets/espressif/psram-8M/snippet.yml" "/home/jeremy/utat-dev/zephyrproject/zephyr/snippets/espressif/psram-reloc/snippet.yml" "/home/jeremy/utat-dev/zephyrproject/zephyr/snippets/espressif/psram-wifi/snippet.yml" "/home/jeremy/utat-dev/zephyrproject/zephyr/snippets/hci-uart-native-sim/snippet.yml" "/home/jeremy/utat-dev/zephyrproject/zephyr/snippets/nordic/nordic-flpr-xip/snippet.yml" "/home/jeremy/utat-dev/zephyrproject/zephyr/snippets/nordic/nordic-flpr/snippet.yml" "/home/jeremy/utat-dev/zephyrproject/zephyr/snippets/nordic/nordic-log-stm-dict/snippet.yml" "/home/jeremy/utat-dev/zephyrproject/zephyr/snippets/nordic/nordic-log-stm-tpiu-dict/snippet.yml" "/home/jeremy/utat-dev/zephyrproject/zephyr/snippets/nordic/nordic-log-stm/snippet.yml" "/home/jeremy/utat-dev/zephyrproject/zephyr/snippets/nordic/nordic-ppr-xip/snippet.yml" "/home/jeremy/utat-dev/zephyrproject/zephyr/snippets/nordic/nordic-ppr/snippet.yml" "/home/jeremy/utat-dev/zephyrproject/zephyr/snippets/nus-console/snippet.yml" "/home/jeremy/utat-dev/zephyrproject/zephyr/snippets/ram-console/snippet.yml" "/home/jeremy/utat-dev/zephyrproject/zephyr/snippets/ram-tracing/snippet.yml" "/home/jeremy/utat-dev/zephyrproject/zephyr/snippets/rp2-boot-mode-retention/snippet.yml" "/home/jeremy/utat-dev/zephyrproject/zephyr/snippets/rtt-console/snippet.yml" "/home/jeremy/utat-dev/zephyrproject/zephyr/snippets/rtt-tracing/snippet.yml" "/home/jeremy/utat-dev/zephyrproject/zephyr/snippets/semihost-tracing/snippet.yml" "/home/jeremy/utat-dev/zephyrproject/zephyr/snippets/serial-console/snippet.yml" "/home/jeremy/utat-dev/zephyrproject/zephyr/snippets/silabs-pti/snippet.yml" "/home/jeremy/utat-dev/zephyrproject/zephyr/snippets/slot1-partition/snippet.yml" "/home/jeremy/utat-dev/zephyrproject/zephyr/snippets/socketcan-native-sim/snippet.yml" "/home/jeremy/utat-dev/zephyrproject/zephyr/snippets/usbip-native-sim/snippet.yml" "/home/jeremy/utat-dev/zephyrproject/zephyr/snippets/video-sw-generator/snippet.yml" "/home/jeremy/utat-dev/zephyrproject/zephyr/snippets/wifi/wifi-credentials/snippet.yml" "/home/jeremy/utat-dev/zephyrproject/zephyr/snippets/wifi/wifi-enterprise/snippet.yml" "/home/jeremy/utat-dev/zephyrproject/zephyr/snippets/wifi/wifi-ip/snippet.yml" "/home/jeremy/utat-dev/zephyrproject/zephyr/snippets/wifi/wifi-ipv4/snippet.yml" "/home/jeremy/utat-dev/zephyrproject/zephyr/snippets/wifi/wifi-ipv6/snippet.yml" "/home/jeremy/utat-dev/zephyrproject/zephyr/snippets/xen_dom0/snippet.yml" "/home/jeremy/utat-dev/zephyrproject/zephyr/snippets/xiao-serial-console/snippet.yml")
# Create variable scope for snippets build variables
zephyr_create_scope(snippets)
File diff suppressed because it is too large Load Diff
@@ -0,0 +1,39 @@
empty_file.o: \
/home/jeremy/utat-dev/zephyrproject/zephyr/misc/empty_file.c \
/home/jeremy/utat-dev/zephyrproject/zephyr/boards/st/nucleo_g431rb/nucleo_g431rb.dts \
/home/jeremy/utat-dev/zephyrproject/zephyr/dts/arm/st/g4/stm32g431Xb.dtsi \
/home/jeremy/utat-dev/zephyrproject/zephyr/dts/arm/st/g4/stm32g431.dtsi \
/home/jeremy/utat-dev/zephyrproject/zephyr/dts/arm/st/g4/stm32g4.dtsi \
/home/jeremy/utat-dev/zephyrproject/zephyr/dts/arm/armv7-m.dtsi \
/home/jeremy/utat-dev/zephyrproject/zephyr/dts/common/skeleton.dtsi \
/home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/stm32g4_clock.h \
/home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/dt-bindings/clock/stm32_common_clocks.h \
/home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/dt-bindings/i2c/i2c.h \
/home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/gpio.h \
/home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/dt-bindings/pwm/pwm.h \
/home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/dt-bindings/adc/adc.h \
/home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/dt-bindings/dt-util.h \
/home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/sys/util_macro.h \
/home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/sys/util_internal.h \
/home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/sys/util_loops.h \
/home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/sys/util_listify.h \
/home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/sys/util_internal_is_eq.h \
/home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/sys/util_internal_util_inc.h \
/home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/sys/util_internal_util_dec.h \
/home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/sys/util_internal_util_x2.h \
/home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/dt-bindings/pwm/stm32_pwm.h \
/home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/dt-bindings/dma/stm32_dma.h \
/home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/stm32g4_l4_5_reset.h \
/home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/dt-bindings/reset/stm32-common.h \
/home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/dt-bindings/sensor/qdec_stm32.h \
/home/jeremy/utat-dev/zephyrproject/zephyr/dts/common/freq.h \
/home/jeremy/utat-dev/zephyrproject/zephyr/dts/common/mem.h \
/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/dts/st/g4/stm32g431r(6-8-b)tx-pinctrl.dtsi \
/home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/stm32-pinctrl.h \
/home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/dt-bindings/pinctrl/stm32-pinctrl-common.h \
/home/jeremy/utat-dev/zephyrproject/zephyr/boards/st/nucleo_g431rb/arduino_r3_connector.dtsi \
/home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/arduino-header-r3.h \
/home/jeremy/utat-dev/zephyrproject/zephyr/boards/st/nucleo_g431rb/st_morpho_connector.dtsi \
/home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/dt-bindings/gpio/st-morpho-header.h \
/home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/dt-bindings/input/input-event-codes.h \
/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/app.overlay
File diff suppressed because it is too large Load Diff
@@ -0,0 +1,65 @@
"acpica":"/home/jeremy/utat-dev/zephyrproject/modules/lib/acpica":"${ZEPHYR_ACPICA_CMAKE_DIR}"
"cmsis":"/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis":"${ZEPHYR_CMSIS_CMAKE_DIR}"
"cmsis-dsp":"/home/jeremy/utat-dev/zephyrproject/modules/lib/cmsis-dsp":"${ZEPHYR_CMSIS_DSP_CMAKE_DIR}"
"cmsis-nn":"/home/jeremy/utat-dev/zephyrproject/modules/lib/cmsis-nn":"${ZEPHYR_CMSIS_NN_CMAKE_DIR}"
"cmsis_6":"/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6":"${ZEPHYR_CMSIS_6_CMAKE_DIR}"
"dhara":"/home/jeremy/utat-dev/zephyrproject/modules/lib/dhara":"${ZEPHYR_DHARA_CMAKE_DIR}"
"fatfs":"/home/jeremy/utat-dev/zephyrproject/modules/fs/fatfs":"${ZEPHYR_FATFS_CMAKE_DIR}"
"adi":"/home/jeremy/utat-dev/zephyrproject/modules/hal/adi":"/home/jeremy/utat-dev/zephyrproject/modules/hal/adi"
"hal_afbr":"/home/jeremy/utat-dev/zephyrproject/modules/hal/afbr":"${ZEPHYR_HAL_AFBR_CMAKE_DIR}"
"hal_ambiq":"/home/jeremy/utat-dev/zephyrproject/modules/hal/ambiq":"/home/jeremy/utat-dev/zephyrproject/modules/hal/ambiq"
"atmel":"/home/jeremy/utat-dev/zephyrproject/modules/hal/atmel":"/home/jeremy/utat-dev/zephyrproject/modules/hal/atmel"
"hal_bouffalolab":"/home/jeremy/utat-dev/zephyrproject/modules/hal/bouffalolab":"${ZEPHYR_HAL_BOUFFALOLAB_CMAKE_DIR}"
"hal_espressif":"/home/jeremy/utat-dev/zephyrproject/modules/hal/espressif":"/home/jeremy/utat-dev/zephyrproject/modules/hal/espressif/zephyr"
"hal_ethos_u":"/home/jeremy/utat-dev/zephyrproject/modules/hal/ethos_u":"${ZEPHYR_HAL_ETHOS_U_CMAKE_DIR}"
"hal_gigadevice":"/home/jeremy/utat-dev/zephyrproject/modules/hal/gigadevice":"${ZEPHYR_HAL_GIGADEVICE_CMAKE_DIR}"
"hal_infineon":"/home/jeremy/utat-dev/zephyrproject/modules/hal/infineon":"${ZEPHYR_HAL_INFINEON_CMAKE_DIR}"
"hal_intel":"/home/jeremy/utat-dev/zephyrproject/modules/hal/intel":"/home/jeremy/utat-dev/zephyrproject/modules/hal/intel/zephyr"
"microchip":"/home/jeremy/utat-dev/zephyrproject/modules/hal/microchip":"/home/jeremy/utat-dev/zephyrproject/modules/hal/microchip"
"hal_nordic":"/home/jeremy/utat-dev/zephyrproject/modules/hal/nordic":"${ZEPHYR_HAL_NORDIC_CMAKE_DIR}"
"nuvoton":"/home/jeremy/utat-dev/zephyrproject/modules/hal/nuvoton":"/home/jeremy/utat-dev/zephyrproject/modules/hal/nuvoton"
"hal_nxp":"/home/jeremy/utat-dev/zephyrproject/modules/hal/nxp":"${ZEPHYR_HAL_NXP_CMAKE_DIR}"
"openisa":"/home/jeremy/utat-dev/zephyrproject/modules/hal/openisa":"/home/jeremy/utat-dev/zephyrproject/modules/hal/openisa"
"quicklogic":"/home/jeremy/utat-dev/zephyrproject/modules/hal/quicklogic":"/home/jeremy/utat-dev/zephyrproject/modules/hal/quicklogic"
"hal_realtek":"/home/jeremy/utat-dev/zephyrproject/modules/hal/realtek":"${ZEPHYR_HAL_REALTEK_CMAKE_DIR}"
"hal_renesas":"/home/jeremy/utat-dev/zephyrproject/modules/hal/renesas":"/home/jeremy/utat-dev/zephyrproject/modules/hal/renesas"
"hal_rpi_pico":"/home/jeremy/utat-dev/zephyrproject/modules/hal/rpi_pico":"${ZEPHYR_HAL_RPI_PICO_CMAKE_DIR}"
"hal_sifli":"/home/jeremy/utat-dev/zephyrproject/modules/hal/sifli":"${ZEPHYR_HAL_SIFLI_CMAKE_DIR}"
"hal_silabs":"/home/jeremy/utat-dev/zephyrproject/modules/hal/silabs":"${ZEPHYR_HAL_SILABS_CMAKE_DIR}"
"hal_st":"/home/jeremy/utat-dev/zephyrproject/modules/hal/st":"/home/jeremy/utat-dev/zephyrproject/modules/hal/st"
"hal_stm32":"/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32":"/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32"
"hal_tdk":"/home/jeremy/utat-dev/zephyrproject/modules/hal/tdk":"/home/jeremy/utat-dev/zephyrproject/modules/hal/tdk"
"hal_telink":"/home/jeremy/utat-dev/zephyrproject/modules/hal/telink":"/home/jeremy/utat-dev/zephyrproject/modules/hal/telink"
"ti":"/home/jeremy/utat-dev/zephyrproject/modules/hal/ti":"/home/jeremy/utat-dev/zephyrproject/modules/hal/ti"
"hal_wch":"/home/jeremy/utat-dev/zephyrproject/modules/hal/wch":"${ZEPHYR_HAL_WCH_CMAKE_DIR}"
"hal_wurthelektronik":"/home/jeremy/utat-dev/zephyrproject/modules/hal/wurthelektronik":"/home/jeremy/utat-dev/zephyrproject/modules/hal/wurthelektronik"
"xtensa":"/home/jeremy/utat-dev/zephyrproject/modules/hal/xtensa":"/home/jeremy/utat-dev/zephyrproject/modules/hal/xtensa"
"hostap":"/home/jeremy/utat-dev/zephyrproject/modules/lib/hostap":"${ZEPHYR_HOSTAP_CMAKE_DIR}"
"liblc3":"/home/jeremy/utat-dev/zephyrproject/modules/lib/liblc3":"${ZEPHYR_LIBLC3_CMAKE_DIR}"
"libmctp":"/home/jeremy/utat-dev/zephyrproject/modules/lib/libmctp":"/home/jeremy/utat-dev/zephyrproject/modules/lib/libmctp/zephyr"
"libmetal":"/home/jeremy/utat-dev/zephyrproject/modules/hal/libmetal":"/home/jeremy/utat-dev/zephyrproject/modules/hal/libmetal"
"libsbc":"/home/jeremy/utat-dev/zephyrproject/modules/lib/libsbc":"${ZEPHYR_LIBSBC_CMAKE_DIR}"
"littlefs":"/home/jeremy/utat-dev/zephyrproject/modules/fs/littlefs":"${ZEPHYR_LITTLEFS_CMAKE_DIR}"
"lora-basics-modem":"/home/jeremy/utat-dev/zephyrproject/modules/lib/lora-basics-modem":"${ZEPHYR_LORA_BASICS_MODEM_CMAKE_DIR}"
"loramac-node":"/home/jeremy/utat-dev/zephyrproject/modules/lib/loramac-node":"${ZEPHYR_LORAMAC_NODE_CMAKE_DIR}"
"lvgl":"/home/jeremy/utat-dev/zephyrproject/modules/lib/gui/lvgl":"${ZEPHYR_LVGL_CMAKE_DIR}"
"mbedtls":"/home/jeremy/utat-dev/zephyrproject/modules/crypto/mbedtls":"${ZEPHYR_MBEDTLS_CMAKE_DIR}"
"mbedtls-3.6":"/home/jeremy/utat-dev/zephyrproject/modules/crypto/mbedtls-3.6":""
"mcuboot":"/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot":"/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr"
"mipi-sys-t":"/home/jeremy/utat-dev/zephyrproject/modules/debug/mipi-sys-t":"/home/jeremy/utat-dev/zephyrproject/modules/debug/mipi-sys-t"
"mldsa-native":"/home/jeremy/utat-dev/zephyrproject/modules/crypto/mldsa-native":""
"nanopb":"/home/jeremy/utat-dev/zephyrproject/modules/lib/nanopb":"${ZEPHYR_NANOPB_CMAKE_DIR}"
"nrf_wifi":"/home/jeremy/utat-dev/zephyrproject/modules/lib/nrf_wifi":"${ZEPHYR_NRF_WIFI_CMAKE_DIR}"
"open-amp":"/home/jeremy/utat-dev/zephyrproject/modules/lib/open-amp":"/home/jeremy/utat-dev/zephyrproject/modules/lib/open-amp"
"openthread":"/home/jeremy/utat-dev/zephyrproject/modules/lib/openthread":"${ZEPHYR_OPENTHREAD_CMAKE_DIR}"
"percepio":"/home/jeremy/utat-dev/zephyrproject/modules/debug/percepio":"${ZEPHYR_PERCEPIO_CMAKE_DIR}"
"picolibc":"/home/jeremy/utat-dev/zephyrproject/modules/lib/picolibc":"/home/jeremy/utat-dev/zephyrproject/modules/lib/picolibc"
"psa-arch-tests":"/home/jeremy/utat-dev/zephyrproject/modules/tee/tf-m/psa-arch-tests":""
"segger":"/home/jeremy/utat-dev/zephyrproject/modules/debug/segger":"${ZEPHYR_SEGGER_CMAKE_DIR}"
"tf-m-tests":"/home/jeremy/utat-dev/zephyrproject/modules/tee/tf-m/tf-m-tests":""
"tf-psa-crypto":"/home/jeremy/utat-dev/zephyrproject/modules/crypto/tf-psa-crypto":""
"trusted-firmware-a":"/home/jeremy/utat-dev/zephyrproject/modules/tee/tf-a/trusted-firmware-a":"${ZEPHYR_TRUSTED_FIRMWARE_A_CMAKE_DIR}"
"trusted-firmware-m":"/home/jeremy/utat-dev/zephyrproject/modules/tee/tf-m/trusted-firmware-m":"${ZEPHYR_TRUSTED_FIRMWARE_M_CMAKE_DIR}"
"uoscore-uedhoc":"/home/jeremy/utat-dev/zephyrproject/modules/lib/uoscore-uedhoc":"${ZEPHYR_UOSCORE_UEDHOC_CMAKE_DIR}"
"zcbor":"/home/jeremy/utat-dev/zephyrproject/modules/lib/zcbor":"${ZEPHYR_ZCBOR_CMAKE_DIR}"
"nrf_hw_models":"/home/jeremy/utat-dev/zephyrproject/modules/bsim_hw_models/nrf_hw_models":"/home/jeremy/utat-dev/zephyrproject/modules/bsim_hw_models/nrf_hw_models"
@@ -0,0 +1,19 @@
# WARNING. THIS FILE IS AUTO-GENERATED. DO NOT MODIFY!
#
# This file contains build system settings derived from your modules.
#
# Modules may be set via ZEPHYR_MODULES, ZEPHYR_EXTRA_MODULES,
# and/or the west manifest file.
#
# See the Modules guide for more information.
"DTS_ROOT":"/home/jeremy/utat-dev/zephyrproject/modules/hal/adi"
"DTS_ROOT":"/home/jeremy/utat-dev/zephyrproject/modules/hal/ambiq"
"DTS_ROOT":"/home/jeremy/utat-dev/zephyrproject/modules/hal/atmel"
"DTS_ROOT":"/home/jeremy/utat-dev/zephyrproject/modules/hal/bouffalolab"
"DTS_ROOT":"/home/jeremy/utat-dev/zephyrproject/modules/hal/espressif"
"DTS_ROOT":"/home/jeremy/utat-dev/zephyrproject/modules/hal/gigadevice"
"DTS_ROOT":"/home/jeremy/utat-dev/zephyrproject/modules/hal/microchip"
"DTS_ROOT":"/home/jeremy/utat-dev/zephyrproject/modules/hal/nuvoton"
"DTS_ROOT":"/home/jeremy/utat-dev/zephyrproject/modules/hal/nxp"
"DTS_ROOT":"/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32"
"DTS_ROOT":"/home/jeremy/utat-dev/zephyrproject/modules/hal/ti"
Submodule zephyrproject/modules/bsim_hw_models/nrf_hw_models added at b452ce26db
Submodule zephyrproject/modules/crypto/mbedtls added at 6a08a7eb79
Submodule zephyrproject/modules/crypto/mbedtls-3.6 added at a00e23de17
Submodule zephyrproject/modules/crypto/mldsa-native added at 3fc1998283
Submodule zephyrproject/modules/crypto/tf-psa-crypto added at dc575a2ddc
Submodule zephyrproject/modules/debug/mipi-sys-t added at 5a9d6055b6
Submodule zephyrproject/modules/debug/percepio added at f9159fe3c7
Submodule zephyrproject/modules/debug/segger added at 50892fdbcf
Submodule zephyrproject/modules/fs/fatfs added at f4ead3bf4a
Submodule zephyrproject/modules/fs/littlefs added at 8f5ca34784
Submodule zephyrproject/modules/hal/adi added at c8aa8d5456
Submodule zephyrproject/modules/hal/afbr added at 1abf694745
Submodule zephyrproject/modules/hal/ambiq added at c03d2f9902
Submodule zephyrproject/modules/hal/atmel added at 8cd575049f
Submodule zephyrproject/modules/hal/bouffalolab added at 6f8ee38a67
Submodule zephyrproject/modules/hal/cmsis added at 512cc7e895
Submodule zephyrproject/modules/hal/cmsis_6 added at b2dfbe1a20
Submodule zephyrproject/modules/hal/espressif added at 426ef931c1
Submodule zephyrproject/modules/hal/ethos_u added at 03567073fe
Submodule zephyrproject/modules/hal/gigadevice added at ee0e31302c
Submodule zephyrproject/modules/hal/infineon added at ab7351b491
Submodule zephyrproject/modules/hal/intel added at 2ddab7fe5b
Submodule zephyrproject/modules/hal/libmetal added at c41f476ba4
Submodule zephyrproject/modules/hal/microchip added at c0890ac01e
Submodule zephyrproject/modules/hal/nordic added at 3c08112f3d
Submodule zephyrproject/modules/hal/nuvoton added at bed550b27c
Submodule zephyrproject/modules/hal/nxp added at 8e39b38f4c
Submodule zephyrproject/modules/hal/openisa added at eabd530a64
Submodule zephyrproject/modules/hal/quicklogic added at bad894440f
Submodule zephyrproject/modules/hal/realtek added at 428e4ddd2a
Submodule zephyrproject/modules/hal/renesas added at b994af0988
Submodule zephyrproject/modules/hal/rpi_pico added at 562b41e10a
Submodule zephyrproject/modules/hal/sifli added at 86fa0e9433
Submodule zephyrproject/modules/hal/silabs added at 8b00abb4b3
Submodule zephyrproject/modules/hal/st added at e9f0468ade
Submodule zephyrproject/modules/hal/stm32 added at ff0f1fa5ab
Submodule zephyrproject/modules/hal/tdk added at fa54cb6553
Submodule zephyrproject/modules/hal/telink added at 4226c7fc17
Submodule zephyrproject/modules/hal/ti added at e66677c8c8
Submodule zephyrproject/modules/hal/wch added at dd3855ea62
Submodule zephyrproject/modules/hal/wurthelektronik added at 7c1297ea07
Submodule zephyrproject/modules/hal/xtensa added at 0495a1afd3
Submodule zephyrproject/modules/lib/acpica added at 8d24867bc9
Submodule zephyrproject/modules/lib/cmsis-dsp added at 97512610ec
Submodule zephyrproject/modules/lib/cmsis-nn added at d20117c9e8
Submodule zephyrproject/modules/lib/dhara added at 6f163ca05e
Submodule zephyrproject/modules/lib/gui/lvgl added at 85aa60d18b
Submodule zephyrproject/modules/lib/hostap added at cffaf3935f
Submodule zephyrproject/modules/lib/liblc3 added at 48bbd3eacd
Submodule zephyrproject/modules/lib/libmctp added at 782a9da666
Submodule zephyrproject/modules/lib/libsbc added at 8e1beda02a
Submodule zephyrproject/modules/lib/lora-basics-modem added at a8ddc54404
Submodule zephyrproject/modules/lib/loramac-node added at fb00b38307
Submodule zephyrproject/modules/lib/nanopb added at 5499fd4c9a
Submodule zephyrproject/modules/lib/nrf_wifi added at 47bd5b4ebd
Submodule zephyrproject/modules/lib/open-amp added at 01032a8a7b
Submodule zephyrproject/modules/lib/openthread added at e4d97681c5
Submodule zephyrproject/modules/lib/picolibc added at 01254932e8
Submodule zephyrproject/modules/lib/uoscore-uedhoc added at dc0ab63454
Submodule zephyrproject/modules/lib/zcbor added at 9164bd18dc
Submodule zephyrproject/modules/tee/tf-a/trusted-firmware-a added at 4aef38a5bf
Submodule zephyrproject/modules/tee/tf-m/psa-arch-tests added at 6e82192374
Submodule zephyrproject/modules/tee/tf-m/tf-m-tests added at 42f0fb9250
Submodule zephyrproject/modules/tee/tf-m/trusted-firmware-m added at 9a4cb1a280
+28
View File
@@ -0,0 +1,28 @@
-----BEGIN PRIVATE KEY-----
MIIEvgIBADANBgkqhkiG9w0BAQEFAASCBKgwggSkAgEAAoIBAQCvcSzTn4slqBf+
U6lZV6VsW1j6W+dfOWf04bZnSviD/naVWoSoVwfZM1KB+UZMsQAKqqxVhrMrwgi2
rZLOTIbumqjmO00oBH5jqqI8JrRX27Qg8u5XbgYnzbvgHmyVEj68/l6Kiv8Epnrh
hh/6JqReDdJdfUmL1MO5LmU8Yu9IeBRq0yDx3JfNn8QaNIxh6/xr50QWzNeqJgB/
oVwZ3/9M4I1HGgeA8hTrTCtEDtpK50bSvwKk6X8mWQ/ZLVNXbamyi+UK6Uqnr7rJ
7IrYMys7diAGp+xIIy0CdidwlFFu/uigzjEqSX/ciC9sBVOKPoT0vm4OMVDTYvOY
Phmj1C9BAgMBAAECggEACocUji87xtQOn2KH9OreItiAI7nYzdHy1M5e2XoRAFD2
E2r9wU7V7s12P16JdXfzlnlqYz8rf2BZkRQkDSU7dG+Gtzql5R5ZoKgnGV4463ma
8bnJApcTg+mD59IN1mdSO3Tsa9YAsWoaCEu55sn103Yp3cy8WW4T0gf7555jWQW+
McOIby/zQQPFxsJ+67BqKCByfZ/r7YeYR8AOBPwPoltQPQUstCpaTFfZinomzRFT
N3aDfAbcm7vapZB1BP7vrVlHdTe99gg2c2MpTeU2SvHhjqABYswXuGxR/w+xIsSl
CWphOntash0JeOWK4Wojfgly/ZlGfTIHQtr2CTCVJwKBgQDU+D311EJZytU4qYk6
elnJGg1kAm7QShZR0g7KlrQtxNjuo7mUy/j/wrs30PjHfi6hPNf5czwYg+3LNeWS
YPFr0PjEREHze0t/tAgeRahZnk0HRwJ147m89ao36z95gYSraMeGdHxtLbW4QimY
PDOMJ6VMxaPdp1M116sTBpF5qwKBgQDS49XRu8oA3okZdGFtvpELHZFDHmN1/tMf
aoP/SQQ1gq+c3kCqo7zHLwnODvSt+YXBclJdRI0h32qkvmGltF1Lu5R60EGciLzc
QKJzW3qodoFd8Nh+FO97x7x500pZo5bKtyVMleAULEQSQmv/0RSIevD5InHVh5l6
boi15P+GwwKBgQCUc7IlEN9rXfMBO1RX+f9qKgnZg8Sg1nP2dtkuqJxSJxwcRO5Q
5VndVm1QfA9eZ/uzEwltbcEfSZ9RfnFXdtHymMk/bmEWiwRWsTTTfTTbu3fwMbRq
XuIS8J/FuOsXFIxZO4GRnNM6+5jnJt99qcE42k3kVQRjtoZPStWKPpLbXwKBgAJY
iHNZzGhwEURYOBE5cnGWNZxyhRa16/FIhQlc7ZAO0RdEnaGISrxIeKpzHiOlR+ib
9fCVp6A91PjaKUnnlLYX8xHeqSwtlTQ5/9SaquWe09eQq0fTwco1sZIFWKlgmXfN
y7trW1++Ek/Fr1/cGodeHroWuP9wD7P98MVdM75zAoGBAKEWZE+9Ppn3qDXU99J4
Ul32zTLYt+DtYdrryDpc68dPNn+bXb4zuvGgr+O0p4jR7fRh0xNfUKUSibvszR0w
aNk3cx2CRgRw2mMfX/Rh/sJ+QXzJhJhV0xFLXi9cEaTzzRNeK1xweZwlbxF8Vk20
rywQ9K9WgOEZpeUziuuTqw91
-----END PRIVATE KEY-----
+9
View File
@@ -0,0 +1,9 @@
-----BEGIN PUBLIC KEY-----
MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAr3Es05+LJagX/lOpWVel
bFtY+lvnXzln9OG2Z0r4g/52lVqEqFcH2TNSgflGTLEACqqsVYazK8IItq2SzkyG
7pqo5jtNKAR+Y6qiPCa0V9u0IPLuV24GJ8274B5slRI+vP5eior/BKZ64YYf+iak
Xg3SXX1Ji9TDuS5lPGLvSHgUatMg8dyXzZ/EGjSMYev8a+dEFszXqiYAf6FcGd//
TOCNRxoHgPIU60wrRA7aSudG0r8CpOl/JlkP2S1TV22psovlCulKp6+6yeyK2DMr
O3YgBqfsSCMtAnYncJRRbv7ooM4xKkl/3IgvbAVTij6E9L5uDjFQ02LzmD4Zo9Qv
QQIDAQAB
-----END PUBLIC KEY-----
Submodule zephyrproject/tools/edtt added at c282625e69
Submodule zephyrproject/tools/net-tools added at c3431f482e

Some files were not shown because too many files have changed in this diff Show More