Torsten Tejlmand Rasmussen
Torsten Tejlmand Rasmussen
This PR introduces a dedicated unit testing board. Today, a dedicated Zephyr unit testing scheme exists but is different from how a Zephyr build generally works. For example Kconfig is...
This PR is providing documentation for the SYSBuild proposal found in #40555 `DNM` until #40555 is merged, as documentation might need adjustment if implementation is adjusted. ------------------------------------ This is this...
Example where fetch of non SHA revisions is kept locally. Test not updated. Inspired by: https://github.com/NordicPlayground/fw-nrfconnect-nrf/pull/1437 To allow later usage of the fetched refs space then git fetch will always...
Remotes are specified in the manifest as: ` remotes:` ` - name: zephyrproject-rtos` ` url: https://github.com/zephyrproject-rtos` or ` remotes:` ` - name: zephyrproject-rtos` ` url: [email protected]:zephyrproject-rtos/zephyr.git` but there cannot be...
There is a potential flaw in how `west` handles SHAs that can potentially lead to unexpected behavior. If a user updates the manifest file: https://github.com/zephyrproject-rtos/zephyr/blob/f2cc6249158be67c77c8b1fd8ad4eb5d6d051b01/west.yml#L29, with a local SHA ```...
Implementing PR#99 revealed that the way west and manifest is cloned might cause unintended side-effect when implementing re-init functionality using `west init`. See discussion here: https://github.com/zephyrproject-rtos/west/pull/99#discussion_r234601528
**Problem description** When a symbol is double defined but with different prompts, where the active prompt is depending on a common setting both prompts may show. For example to indicate...
Fixes: https://github.com/zephyrproject-rtos/zephyr/issues/33212 Ignoring when user inputs NULL in a text field. menuconfig exits with a python stack trace if NULL is provided as input character, therefore ignore NULL as an...
Support loading of host tools as part of Zephyr-sdk. This allows users of Zephyr SDK to do: `find_package(Zephyr-sdk COMPONENTS HostTools)` instead of having to do something like: `find_package(Zephyr-sdk COMPONENTS HostTools)`...
Warn users if HOST_TOOLS_HOME is missing in a Zephyr SDK installation as this indicates an incomplete installation. Signed-off-by: Torsten Rasmussen