Transcript of new ZMK setup, 2026-06-09: URL: End 'west build': 2026-06-09T20:35:14_91 Start cloning: 2026-06-09T20:21:50_27 ------------------------------------------------------ 13 min 25 secs ================================================================================================ Command lines: # Based on the official ZMK install instructions # (for "native" building): # # # # Prime sudo. Though only required for # installing the dependencies, etc. # sudo ls > /dev/null # sudo apt update # Note: This will upgrade packages which may be # comletely unrelated to the ZMK build, # for example, package 'dotnet-sdk-10.0' # sudo apt-get --assume-yes upgrade # Install the required dependencies: sudo apt-get --assume-yes install --no-install-recommends git cmake ninja-build gperf \ ccache dfu-util device-tree-compiler wget \ python3-dev python3-pip python3-setuptools python3-tk python3-wheel xz-utils file \ make gcc gcc-multilib g++-multilib libsdl2-dev libmagic1 cd $HOME echo ; echo "Start cloning: $(date +%FT%T_%N_ns)" ; echo git clone https://github.com/zmkfirmware/zmk.git main_ZMK echo ; echo "End cloning: $(date +%FT%T_%N_ns)" ; echo python3 -m venv ~/.main_ZMK_environment4 source ~/.main_ZMK_environment4/bin/activate cd $HOME/main_ZMK git status # Confirm Git branch "main" # Install 'west' cd $HOME/main_ZMK pip install west # Initialise the application and update # to fetch modules, including Zephyr: cd $HOME/main_ZMK echo ; echo "Start 'west init & update': $(date +%FT%T_%N_ns)" ; echo west init -l app/ # Current directory at the top of the # cloned repository is assumed #cd $HOME #west init $HOME/main_ZMK # Zephyr. Absolute. Without "/app" #cd $HOME/main_ZMK west update echo ; echo "End 'west init& update': $(date +%FT%T_%N_ns)" ; echo # Export a Zephyr CMake package. This allows CMake to # automatically load boilerplate code required for # building Zephyr applications. cd $HOME/main_ZMK west zephyr-export cd $HOME/main_ZMK west packages pip --install # It takes a lot of time! # # '/zephyr' is critical... # # But on LMDE 6, it failed due to a # requirement of Python 3.12... It # apparently only has 3.11.2... # # LMDE 7: Python 3.13.5 # # Starts by downloading the Zyphyr SDK v. 1.0.1 # compressed tar ball (70 MB). # # And installs things like (downloading 45 - 145 MB # for each): # # 'arm-zephyr-eabi' GNU toolchain. # 'riscv64-zephyr-elf' GNU toolchain. # cd $HOME/main_ZMK/zephyr echo ; echo "Start 'west sdk install': $(date +%FT%T_%N_ns)" ; echo west sdk install echo ; echo "End 'west sdk install': $(date +%FT%T_%N_ns)" ; echo # Exit the virtual Python environment deactivate # ##################################### # # Build # # Start state: # # A new terminal window, thus activating the # virtual Python environment is required # # '-p' to erase the memory of a previous # build, e.g, 'rtl87x2g_evb_a', if any # source ~/.main_ZMK_environment4/bin/activate cd $HOME/main_ZMK/app # -- Zephyr version: 4.1.0 (/home/embo/main_ZMK/zephyr), build: 58a5874a446a # [187/187] Linking C executable zephyr/zmk.elf # # Memory region Used Size Region Size %age Used # FLASH: 47624 B 256 KB 18.17% # RAM: 11736 B 40 KB 28.65% # CCM: 0 GB 8 KB 0.00% # IDT_LIST: 0 GB 32 KB 0.00% # Generating files from /home/embo/main_ZMK/app/build/zephyr/zmk.elf for board: planck # echo ; echo "Start 'west build': $(date +%FT%T_%N_ns)" ; echo west build -p -b planck//zmk echo ; echo "End 'west build': $(date +%FT%T_%N_ns)" ; echo find $HOME/main_ZMK/app | grep elf | xargs ls -l # 975388 Jun 4 05:33 /home/embo/main_ZMK/app/build/zephyr/zephyr_pre0.elf # 974604 Jun 4 05:33 /home/embo/main_ZMK/app/build/zephyr/zmk.elf # Exit the virtual Python environment deactivate # Extra (is here, because it may or may not block # with prompts, 'less' paging, etc.): # # Check ZMK version. For example, FF09F2 (2026-06-08) git -C $HOME/main_ZMK status # 'On branch main' git -C $HOME/main_ZMK log -1 ================================================================================================ The actual transcript (about 3,000 lines): embo@emboLMDE7:~$ # Based on the official ZMK install instructions # (for "native" building): # # # # Prime sudo. Though only required for # installing the dependencies, etc. # sudo ls > /dev/null [sudo] password for embo: # sudo apt update embo@emboLMDE7:~$ sudo apt-get --assume-yes upgrade Reading package lists... Done Building dependency tree... Done Reading state information... Done Calculating upgrade... Done The following packages will be upgraded: aspnetcore-runtime-10.0 aspnetcore-targeting-pack-10.0 dotnet-apphost-pack-10.0 dotnet-host dotnet-hostfxr-10.0 dotnet-runtime-10.0 dotnet-runtime-deps-10.0 dotnet-sdk-10.0 dotnet-targeting-pack-10.0 9 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. Need to get 235 MB of archives. After this operation, 111 kB of additional disk space will be used. Get:1 https://packages.microsoft.com/debian/13/prod trixie/main amd64 dotnet-host amd64 10.0.9 [44.8 kB] Get:2 https://packages.microsoft.com/debian/13/prod trixie/main amd64 dotnet-hostfxr-10.0 amd64 10.0.9 [151 kB] Get:3 https://packages.microsoft.com/debian/13/prod trixie/main amd64 dotnet-runtime-deps-10.0 amd64 10.0.9 [3,188 B] Get:4 https://packages.microsoft.com/debian/13/prod trixie/main amd64 dotnet-runtime-10.0 amd64 10.0.9 [36.4 MB] Get:5 https://packages.microsoft.com/debian/13/prod trixie/main amd64 aspnetcore-runtime-10.0 amd64 10.0.9 [12.8 MB] Get:6 https://packages.microsoft.com/debian/13/prod trixie/main amd64 dotnet-targeting-pack-10.0 amd64 10.0.9 [6,555 kB] Get:7 https://packages.microsoft.com/debian/13/prod trixie/main amd64 aspnetcore-targeting-pack-10.0 amd64 10.0.9 [6,786 kB] Get:8 https://packages.microsoft.com/debian/13/prod trixie/main amd64 dotnet-apphost-pack-10.0 amd64 10.0.9 [5,358 kB] Get:9 https://packages.microsoft.com/debian/13/prod trixie/main amd64 dotnet-sdk-10.0 amd64 10.0.301 [167 MB] Fetched 235 MB in 1min 10s (3,351 kB/s) (Reading database ... 487725 files and directories currently installed.) Preparing to unpack .../0-dotnet-host_10.0.9_amd64.deb ... Unpacking dotnet-host (10.0.9) over (10.0.8) ... Preparing to unpack .../1-dotnet-hostfxr-10.0_10.0.9_amd64.deb ... Unpacking dotnet-hostfxr-10.0 (10.0.9) over (10.0.8) ... Preparing to unpack .../2-dotnet-runtime-deps-10.0_10.0.9_amd64.deb ... Unpacking dotnet-runtime-deps-10.0 (10.0.9) over (10.0.8) ... Preparing to unpack .../3-dotnet-runtime-10.0_10.0.9_amd64.deb ... Unpacking dotnet-runtime-10.0 (10.0.9) over (10.0.8) ... Preparing to unpack .../4-aspnetcore-runtime-10.0_10.0.9_amd64.deb ... Unpacking aspnetcore-runtime-10.0 (10.0.9) over (10.0.8) ... Preparing to unpack .../5-dotnet-targeting-pack-10.0_10.0.9_amd64.deb ... Unpacking dotnet-targeting-pack-10.0 (10.0.9) over (10.0.8) ... Preparing to unpack .../6-aspnetcore-targeting-pack-10.0_10.0.9_amd64.deb ... Unpacking aspnetcore-targeting-pack-10.0 (10.0.9) over (10.0.8) ... Preparing to unpack .../7-dotnet-apphost-pack-10.0_10.0.9_amd64.deb ... Unpacking dotnet-apphost-pack-10.0 (10.0.9) over (10.0.8) ... Preparing to unpack .../8-dotnet-sdk-10.0_10.0.301_amd64.deb ... Unpacking dotnet-sdk-10.0 (10.0.301) over (10.0.300) ... Setting up dotnet-host (10.0.9) ... Setting up dotnet-targeting-pack-10.0 (10.0.9) ... Setting up dotnet-hostfxr-10.0 (10.0.9) ... Setting up aspnetcore-targeting-pack-10.0 (10.0.9) ... Setting up dotnet-runtime-deps-10.0 (10.0.9) ... Setting up dotnet-apphost-pack-10.0 (10.0.9) ... Setting up dotnet-runtime-10.0 (10.0.9) ... Setting up aspnetcore-runtime-10.0 (10.0.9) ... Setting up dotnet-sdk-10.0 (10.0.301) ... embo@emboLMDE7:~$ cd $HOME echo ; echo "Start cloning: $(date +%FT%T_%N_ns)" ; echo git clone https://github.com/zmkfirmware/zmk.git main_ZMK echo ; echo "End cloning: $(date +%FT%T_%N_ns)" ; echo python3 -m venv ~/.main_ZMK_environment4 source ~/.main_ZMK_environment4/bin/activate cd $HOME/main_ZMK git status # Confirm Git branch "main" #git log -5 # Show back to Keychron's first # # change on 2026-05-25 (4E2C75) # Install 'west' cd $HOME/main_ZMK pip install west # Initialise the application and update # to fetch modules, including Zephyr: cd $HOME/main_ZMK echo ; echo "Start 'west init & update': $(date +%FT%T_%N_ns)" ; echo west init -l app/ # Current directory at the top of the # cloned repository is assumed #cd $HOME #west init $HOME/main_ZMK # Zephyr. Absolute. Without "/app" #cd $HOME/main_ZMK west update echo ; echo "End 'west init& update': $(date +%FT%T_%N_ns)" ; echo # Export a Zephyr CMake package. This allows CMake to find $HOME/main_ZMK/app | grep elf | xargs ls -lN_ns)" ; echor/zmk.elf for board: planck Start cloning: 2026-06-09T20:21:50_273650866_ns Cloning into 'main_ZMK'... remote: Enumerating objects: 31833, done. remote: Counting objects: 100% (25/25), done. remote: Compressing objects: 100% (23/23), done. remote: Total 31833 (delta 12), reused 2 (delta 2), pack-reused 31808 (from 2) Receiving objects: 100% (31833/31833), 28.71 MiB | 3.12 MiB/s, done. Resolving deltas: 100% (22179/22179), done. End cloning: 2026-06-09T20:22:00_979257263_ns On branch main Your branch is up to date with 'origin/main'. nothing to commit, working tree clean Requirement already satisfied: west in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (1.5.0) Requirement already satisfied: colorama in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from west) (0.4.6) Requirement already satisfied: PyYAML>=5.1 in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from west) (6.0.3) Requirement already satisfied: pykwalify in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from west) (1.8.0) Requirement already satisfied: packaging in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from west) (26.2) Requirement already satisfied: docopt>=0.6.2 in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from pykwalify->west) (0.6.2) Requirement already satisfied: python-dateutil>=2.8.0 in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from pykwalify->west) (2.9.0.post0) Requirement already satisfied: ruamel.yaml>=0.16.0 in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from pykwalify->west) (0.19.1) Requirement already satisfied: six>=1.5 in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from python-dateutil>=2.8.0->pykwalify->west) (1.17.0) Start 'west init & update': 2026-06-09T20:22:03_965912250_ns === Initializing from existing manifest repository app --- Creating /home/embo/main_ZMK/.west and local configuration file === Initialized. Now run "west update" inside /home/embo/main_ZMK. === updating zephyr (zephyr): --- zephyr: initializing Initialized empty Git repository in /home/embo/main_ZMK/zephyr/.git/ --- zephyr: fetching, need revision v4.1.0+zmk-fixes remote: Enumerating objects: 160265, done. remote: Counting objects: 100% (160265/160265), done. remote: Compressing objects: 100% (96257/96257), done. remote: Total 160265 (delta 80087), reused 114894 (delta 56526), pack-reused 0 (from 0) Receiving objects: 100% (160265/160265), 319.99 MiB | 2.55 MiB/s, done. Resolving deltas: 100% (80087/80087), done. From https://github.com/zmkfirmware/zephyr * branch v4.1.0+zmk-fixes -> FETCH_HEAD * [new tag] v1.0.0 -> v1.0.0 * [new tag] v1.1.0 -> v1.1.0 * [new tag] v1.1.0-rc1 -> v1.1.0-rc1 * [new tag] v1.10.0 -> v1.10.0 * [new tag] v1.10.0-rc1 -> v1.10.0-rc1 * [new tag] v1.10.0-rc2 -> v1.10.0-rc2 * [new tag] v1.10.0-rc3 -> v1.10.0-rc3 * [new tag] v1.11.0 -> v1.11.0 * [new tag] v1.11.0-rc1 -> v1.11.0-rc1 * [new tag] v1.11.0-rc2 -> v1.11.0-rc2 * [new tag] v1.11.0-rc3 -> v1.11.0-rc3 * [new tag] v1.12.0 -> v1.12.0 * [new tag] v1.12.0-rc1 -> v1.12.0-rc1 * [new tag] v1.12.0-rc2 -> v1.12.0-rc2 * [new tag] v1.12.0-rc3 -> v1.12.0-rc3 * [new tag] v1.13.0 -> v1.13.0 * [new tag] v1.13.0-rc1 -> v1.13.0-rc1 * [new tag] v1.13.0-rc2 -> v1.13.0-rc2 * [new tag] v1.13.0-rc3 -> v1.13.0-rc3 * [new tag] v1.14.0 -> v1.14.0 * [new tag] v1.14.0-rc1 -> v1.14.0-rc1 * [new tag] v1.14.0-rc2 -> v1.14.0-rc2 * [new tag] v1.14.0-rc3 -> v1.14.0-rc3 * [new tag] v1.14.1 -> v1.14.1 * [new tag] v1.14.1-rc1 -> v1.14.1-rc1 * [new tag] v1.14.1-rc2 -> v1.14.1-rc2 * [new tag] v1.14.1-rc3 -> v1.14.1-rc3 * [new tag] v1.14.2 -> v1.14.2 * [new tag] v1.2.0 -> v1.2.0 * [new tag] v1.2.0-rc1 -> v1.2.0-rc1 * [new tag] v1.2.0-rc2 -> v1.2.0-rc2 * [new tag] v1.3.0 -> v1.3.0 * [new tag] v1.3.0-rc1 -> v1.3.0-rc1 * [new tag] v1.3.0-rc2 -> v1.3.0-rc2 * [new tag] v1.4.0 -> v1.4.0 * [new tag] v1.4.0-rc1 -> v1.4.0-rc1 * [new tag] v1.4.0-rc2 -> v1.4.0-rc2 * [new tag] v1.4.0-rc3 -> v1.4.0-rc3 * [new tag] v1.5.0 -> v1.5.0 * [new tag] v1.5.0-rc0 -> v1.5.0-rc0 * [new tag] v1.5.0-rc1 -> v1.5.0-rc1 * [new tag] v1.5.0-rc2 -> v1.5.0-rc2 * [new tag] v1.5.0-rc3 -> v1.5.0-rc3 * [new tag] v1.5.0-rc4 -> v1.5.0-rc4 * [new tag] v1.6.0 -> v1.6.0 * [new tag] v1.6.0-rc1 -> v1.6.0-rc1 * [new tag] v1.6.0-rc2 -> v1.6.0-rc2 * [new tag] v1.6.0-rc3 -> v1.6.0-rc3 * [new tag] v1.6.0-rc4 -> v1.6.0-rc4 * [new tag] v1.6.1 -> v1.6.1 * [new tag] v1.6.1-rc -> v1.6.1-rc * [new tag] v1.6.99 -> v1.6.99 * [new tag] v1.7.0 -> v1.7.0 * [new tag] v1.7.0-rc1 -> v1.7.0-rc1 * [new tag] v1.7.0-rc2 -> v1.7.0-rc2 * [new tag] v1.7.0-rc3 -> v1.7.0-rc3 * [new tag] v1.7.0-rc4 -> v1.7.0-rc4 * [new tag] v1.7.1 -> v1.7.1 * [new tag] v1.7.1-rc -> v1.7.1-rc * [new tag] v1.7.99 -> v1.7.99 * [new tag] v1.8.0 -> v1.8.0 * [new tag] v1.8.0-rc1 -> v1.8.0-rc1 * [new tag] v1.8.0-rc2 -> v1.8.0-rc2 * [new tag] v1.8.0-rc3 -> v1.8.0-rc3 * [new tag] v1.8.0-rc4 -> v1.8.0-rc4 * [new tag] v1.8.99 -> v1.8.99 * [new tag] v1.9.0 -> v1.9.0 * [new tag] v1.9.0-rc1 -> v1.9.0-rc1 * [new tag] v1.9.0-rc2 -> v1.9.0-rc2 * [new tag] v1.9.0-rc3 -> v1.9.0-rc3 * [new tag] v1.9.0-rc4 -> v1.9.0-rc4 * [new tag] v1.9.1 -> v1.9.1 * [new tag] v1.9.2 -> v1.9.2 * [new tag] v2.0.0 -> v2.0.0 * [new tag] v2.0.0-rc1 -> v2.0.0-rc1 * [new tag] v2.0.0-rc2 -> v2.0.0-rc2 * [new tag] v2.0.0-rc3 -> v2.0.0-rc3 * [new tag] v2.1.0 -> v2.1.0 * [new tag] v2.1.0-rc1 -> v2.1.0-rc1 * [new tag] v2.1.0-rc2 -> v2.1.0-rc2 * [new tag] v2.1.0-rc3 -> v2.1.0-rc3 * [new tag] v2.2.0 -> v2.2.0 * [new tag] v2.2.0-rc1 -> v2.2.0-rc1 * [new tag] v2.2.0-rc2 -> v2.2.0-rc2 * [new tag] v2.2.0-rc3 -> v2.2.0-rc3 * [new tag] v2.2.1 -> v2.2.1 * [new tag] v2.3.0 -> v2.3.0 * [new tag] v2.3.0-rc1 -> v2.3.0-rc1 * [new tag] v2.3.0-rc2 -> v2.3.0-rc2 * [new tag] v2.4.0 -> v2.4.0 * [new tag] v2.4.0-rc1 -> v2.4.0-rc1 * [new tag] v2.4.0-rc2 -> v2.4.0-rc2 * [new tag] v2.4.0-rc3 -> v2.4.0-rc3 * [new tag] zephyr-v1.0.0 -> zephyr-v1.0.0 * [new tag] zephyr-v1.1.0 -> zephyr-v1.1.0 * [new tag] zephyr-v1.10.0 -> zephyr-v1.10.0 * [new tag] zephyr-v1.11.0 -> zephyr-v1.11.0 * [new tag] zephyr-v1.12.0 -> zephyr-v1.12.0 * [new tag] zephyr-v1.13.0 -> zephyr-v1.13.0 * [new tag] zephyr-v1.14.0 -> zephyr-v1.14.0 * [new tag] zephyr-v1.14.1 -> zephyr-v1.14.1 * [new tag] zephyr-v1.2.0 -> zephyr-v1.2.0 * [new tag] zephyr-v1.3.0 -> zephyr-v1.3.0 * [new tag] zephyr-v1.4.0 -> zephyr-v1.4.0 * [new tag] zephyr-v1.5.0 -> zephyr-v1.5.0 * [new tag] zephyr-v1.6.0 -> zephyr-v1.6.0 * [new tag] zephyr-v1.6.1 -> zephyr-v1.6.1 * [new tag] zephyr-v1.7.0 -> zephyr-v1.7.0 * [new tag] zephyr-v1.7.1 -> zephyr-v1.7.1 * [new tag] zephyr-v1.8.0 -> zephyr-v1.8.0 * [new tag] zephyr-v1.9.0 -> zephyr-v1.9.0 * [new tag] zephyr-v1.9.1 -> zephyr-v1.9.1 * [new tag] zephyr-v1.9.2 -> zephyr-v1.9.2 * [new tag] zephyr-v2.0.0 -> zephyr-v2.0.0 * [new tag] zephyr-v2.1.0 -> zephyr-v2.1.0 * [new tag] zephyr-v2.2.0 -> zephyr-v2.2.0 * [new tag] zephyr-v2.2.1 -> zephyr-v2.2.1 * [new tag] zephyr-v2.3.0 -> zephyr-v2.3.0 * [new tag] zephyr-v2.4.0 -> zephyr-v2.4.0 Updating files: 100% (42653/42653), done. HEAD is now at 58a5874a4 backport ls0xx serial VCOM inversion support to Zephyr 4.1 HEAD is now at 58a5874a4 backport ls0xx serial VCOM inversion support to Zephyr 4.1 === updating hal_stm32 (modules/hal/stm32): --- hal_stm32: initializing Initialized empty Git repository in /home/embo/main_ZMK/modules/hal/stm32/.git/ --- hal_stm32: fetching, need revision 4fcc3a3f32abe1c4cb76d9d1cef967728dd03908 remote: Enumerating objects: 45913, done. remote: Counting objects: 100% (6546/6546), done. remote: Compressing objects: 100% (692/692), done. remote: Total 45913 (delta 6064), reused 5854 (delta 5854), pack-reused 39367 (from 1) Receiving objects: 100% (45913/45913), 136.46 MiB | 3.18 MiB/s, done. Resolving deltas: 100% (41400/41400), done. From https://github.com/zmkfirmware/hal_stm32 * [new branch] main -> refs/west/main * [new branch] v4.1-branch+zmk -> refs/west/v4.1-branch+zmk Updating files: 100% (6749/6749), done. HEAD is now at 4fcc3a3f stm32cube: Minor stm32c0 fix to include HAL_PCD header. HEAD is now at 4fcc3a3f stm32cube: Minor stm32c0 fix to include HAL_PCD header. === updating lvgl (modules/lib/gui/lvgl): --- lvgl: initializing Initialized empty Git repository in /home/embo/main_ZMK/modules/lib/gui/lvgl/.git/ --- lvgl: fetching, need revision f1db87ee98f1810328a8419572fa42a3b5f352ae remote: Enumerating objects: 102821, done. remote: Counting objects: 100% (4056/4056), done. remote: Compressing objects: 100% (300/300), done. remote: Total 102821 (delta 3760), reused 3756 (delta 3756), pack-reused 98765 (from 1) Receiving objects: 100% (102821/102821), 296.16 MiB | 3.29 MiB/s, done. Resolving deltas: 100% (78121/78121), done. From https://github.com/zmkfirmware/lvgl * [new branch] v4.1.0+zmk-fixes -> refs/west/v4.1.0+zmk-fixes * [new branch] zephyr -> refs/west/zephyr HEAD is now at f1db87ee9 feat(theme_mono): Pass small/large fonts to theme init HEAD is now at f1db87ee9 feat(theme_mono): Pass small/large fonts to theme init === updating zmk-studio-messages (modules/msgs/zmk-studio-messages): --- zmk-studio-messages: initializing Initialized empty Git repository in /home/embo/main_ZMK/modules/msgs/zmk-studio-messages/.git/ --- zmk-studio-messages: fetching, need revision 6cb4c283e76209d59c45fbcb218800cd19e9339d remote: Enumerating objects: 109, done. remote: Counting objects: 100% (45/45), done. remote: Compressing objects: 100% (18/18), done. remote: Total 109 (delta 33), reused 27 (delta 27), pack-reused 64 (from 1) Receiving objects: 100% (109/109), 13.89 KiB | 374.00 KiB/s, done. Resolving deltas: 100% (38/38), done. From https://github.com/zmkfirmware/zmk-studio-messages * [new branch] add-combos -> refs/west/add-combos * [new branch] main -> refs/west/main HEAD is now at 6cb4c28 refactor: Return detailed save changes response. HEAD is now at 6cb4c28 refactor: Return detailed save changes response. === updating canopennode (modules/lib/canopennode): --- canopennode: initializing Initialized empty Git repository in /home/embo/main_ZMK/modules/lib/canopennode/.git/ --- canopennode: fetching, need revision dec12fa3f0d790cafa8414a4c2930ea71ab72ffd remote: Enumerating objects: 1936, done. remote: Counting objects: 100% (1936/1936), done. remote: Compressing objects: 100% (551/551), done. remote: Total 1936 (delta 1401), reused 1906 (delta 1380), pack-reused 0 (from 0) Receiving objects: 100% (1936/1936), 1.07 MiB | 2.31 MiB/s, done. Resolving deltas: 100% (1401/1401), done. From https://github.com/zephyrproject-rtos/canopennode * [new branch] master -> refs/west/master * [new branch] v1.3-master -> refs/west/v1.3-master * [new branch] zephyr -> refs/west/zephyr * [new tag] zephyr-snapshot-1 -> zephyr-snapshot-1 HEAD is now at dec12fa stack: map CANopenNode crc16_ccitt() to Zephyr crc16_itu_t() HEAD is now at dec12fa stack: map CANopenNode crc16_ccitt() to Zephyr crc16_itu_t() === updating chre (modules/lib/chre): --- chre: initializing Initialized empty Git repository in /home/embo/main_ZMK/modules/lib/chre/.git/ --- chre: fetching, need revision 3b32c76efee705af146124fb4190f71be5a4e36e remote: Enumerating objects: 30770, done. remote: Counting objects: 100% (58/58), done. remote: Compressing objects: 100% (32/32), done. remote: Total 30770 (delta 28), reused 28 (delta 20), pack-reused 30712 (from 4) Receiving objects: 100% (30770/30770), 6.71 MiB | 2.31 MiB/s, done. Resolving deltas: 100% (18365/18365), done. From https://github.com/zephyrproject-rtos/chre * [new branch] zephyr -> refs/west/zephyr HEAD is now at 3b32c76e zephyr: link the .unstable_id data in ROM HEAD is now at 3b32c76e zephyr: link the .unstable_id data in ROM === updating lz4 (modules/lib/lz4): --- lz4: initializing Initialized empty Git repository in /home/embo/main_ZMK/modules/lib/lz4/.git/ --- lz4: fetching, need revision 11b8a1e22fa651b524494e55d22b69d3d9cebcfd remote: Enumerating objects: 15900, done. remote: Counting objects: 100% (1/1), done. remote: Total 15900 (delta 0), reused 0 (delta 0), pack-reused 15899 (from 2) Receiving objects: 100% (15900/15900), 5.86 MiB | 2.99 MiB/s, done. Resolving deltas: 100% (11149/11149), done. From https://github.com/zephyrproject-rtos/lz4 * [new branch] zephyr -> refs/west/zephyr * [new tag] lz4-r130 -> lz4-r130 * [new tag] r116 -> r116 * [new tag] r117 -> r117 * [new tag] r118 -> r118 * [new tag] r119 -> r119 * [new tag] r120 -> r120 * [new tag] r121 -> r121 * [new tag] r122 -> r122 * [new tag] r123 -> r123 * [new tag] r124 -> r124 * [new tag] r125 -> r125 * [new tag] r126 -> r126 * [new tag] r127 -> r127 * [new tag] r128 -> r128 * [new tag] r129 -> r129 * [new tag] r130 -> r130 * [new tag] r131 -> r131 * [new tag] rc129v0 -> rc129v0 * [new tag] v1.7.3 -> v1.7.3 * [new tag] v1.7.4 -> v1.7.4 * [new tag] v1.7.4.2 -> v1.7.4.2 * [new tag] v1.7.5 -> v1.7.5 * [new tag] v1.8.0 -> v1.8.0 * [new tag] v1.8.1 -> v1.8.1 * [new tag] v1.8.1.2 -> v1.8.1.2 * [new tag] v1.8.2 -> v1.8.2 * [new tag] v1.8.3 -> v1.8.3 * [new tag] v1.9.0 -> v1.9.0 * [new tag] v1.9.1 -> v1.9.1 * [new tag] v1.9.2 -> v1.9.2 * [new tag] v1.9.3 -> v1.9.3 HEAD is now at 11b8a1e Merge pull request #2 from parthitce/dev/v1.10.0 HEAD is now at 11b8a1e Merge pull request #2 from parthitce/dev/v1.10.0 === updating nanopb (modules/lib/nanopb): --- nanopb: initializing Initialized empty Git repository in /home/embo/main_ZMK/modules/lib/nanopb/.git/ --- nanopb: fetching, need revision 7307ce399b81ddcb3c3a5dc862c52d4754328d38 remote: Enumerating objects: 9764, done. remote: Counting objects: 100% (28/28), done. remote: Compressing objects: 100% (21/21), done. remote: Total 9764 (delta 13), reused 7 (delta 7), pack-reused 9736 (from 2) Receiving objects: 100% (9764/9764), 4.39 MiB | 2.97 MiB/s, done. Resolving deltas: 100% (6326/6326), done. From https://github.com/zephyrproject-rtos/nanopb * [new branch] cifuzz_test4 -> refs/west/cifuzz_test4 * [new branch] dev_dynamic_nanopb_pb2 -> refs/west/dev_dynamic_nanopb_pb2 * [new branch] dev_markdown_docs -> refs/west/dev_markdown_docs * [new branch] maintenance_0.1 -> refs/west/maintenance_0.1 * [new branch] maintenance_0.2 -> refs/west/maintenance_0.2 * [new branch] maintenance_0.3 -> refs/west/maintenance_0.3 * [new branch] master -> refs/west/master * [new branch] zephyr -> refs/west/zephyr * [new tag] 0.2.9.5 -> 0.2.9.5 * [new tag] 0.3.6 -> 0.3.6 * [new tag] 0.3.7 -> 0.3.7 * [new tag] 0.3.8 -> 0.3.8 * [new tag] 0.3.9 -> 0.3.9 * [new tag] 0.3.9.1 -> 0.3.9.1 * [new tag] 0.3.9.2 -> 0.3.9.2 * [new tag] 0.3.9.3 -> 0.3.9.3 * [new tag] 0.3.9.4 -> 0.3.9.4 * [new tag] 0.3.9.5 -> 0.3.9.5 * [new tag] 0.3.9.6 -> 0.3.9.6 * [new tag] 0.3.9.7 -> 0.3.9.7 * [new tag] 0.3.9.8 -> 0.3.9.8 * [new tag] 0.4.0 -> 0.4.0 * [new tag] 0.4.1 -> 0.4.1 * [new tag] 0.4.2 -> 0.4.2 * [new tag] 0.4.3 -> 0.4.3 * [new tag] 0.4.4 -> 0.4.4 * [new tag] 0.4.5 -> 0.4.5 * [new tag] nanopb-0.1.0 -> nanopb-0.1.0 * [new tag] nanopb-0.1.1 -> nanopb-0.1.1 * [new tag] nanopb-0.1.2 -> nanopb-0.1.2 * [new tag] nanopb-0.1.3 -> nanopb-0.1.3 * [new tag] nanopb-0.1.4 -> nanopb-0.1.4 * [new tag] nanopb-0.1.5 -> nanopb-0.1.5 * [new tag] nanopb-0.1.6 -> nanopb-0.1.6 * [new tag] nanopb-0.1.7 -> nanopb-0.1.7 * [new tag] nanopb-0.1.8 -> nanopb-0.1.8 * [new tag] nanopb-0.1.9 -> nanopb-0.1.9 * [new tag] nanopb-0.1.9.1 -> nanopb-0.1.9.1 * [new tag] nanopb-0.2.0 -> nanopb-0.2.0 * [new tag] nanopb-0.2.1 -> nanopb-0.2.1 * [new tag] nanopb-0.2.2 -> nanopb-0.2.2 * [new tag] nanopb-0.2.3 -> nanopb-0.2.3 * [new tag] nanopb-0.2.4 -> nanopb-0.2.4 * [new tag] nanopb-0.2.5 -> nanopb-0.2.5 * [new tag] nanopb-0.2.6 -> nanopb-0.2.6 * [new tag] nanopb-0.2.7 -> nanopb-0.2.7 * [new tag] nanopb-0.2.8 -> nanopb-0.2.8 * [new tag] nanopb-0.2.9 -> nanopb-0.2.9 * [new tag] nanopb-0.2.9.1 -> nanopb-0.2.9.1 * [new tag] nanopb-0.2.9.2 -> nanopb-0.2.9.2 * [new tag] nanopb-0.2.9.3 -> nanopb-0.2.9.3 * [new tag] nanopb-0.2.9.4 -> nanopb-0.2.9.4 * [new tag] nanopb-0.2.9.5 -> nanopb-0.2.9.5 * [new tag] nanopb-0.3.0 -> nanopb-0.3.0 * [new tag] nanopb-0.3.1 -> nanopb-0.3.1 * [new tag] nanopb-0.3.2 -> nanopb-0.3.2 * [new tag] nanopb-0.3.3 -> nanopb-0.3.3 * [new tag] nanopb-0.3.4 -> nanopb-0.3.4 * [new tag] nanopb-0.3.5 -> nanopb-0.3.5 * [new tag] nanopb-0.3.6 -> nanopb-0.3.6 * [new tag] nanopb-0.3.7 -> nanopb-0.3.7 * [new tag] nanopb-0.3.8 -> nanopb-0.3.8 * [new tag] nanopb-0.3.9 -> nanopb-0.3.9 * [new tag] nanopb-0.3.9.1 -> nanopb-0.3.9.1 * [new tag] nanopb-0.3.9.2 -> nanopb-0.3.9.2 * [new tag] nanopb-0.3.9.3 -> nanopb-0.3.9.3 * [new tag] nanopb-0.3.9.4 -> nanopb-0.3.9.4 * [new tag] nanopb-0.3.9.5 -> nanopb-0.3.9.5 * [new tag] nanopb-0.3.9.6 -> nanopb-0.3.9.6 * [new tag] nanopb-0.3.9.7 -> nanopb-0.3.9.7 * [new tag] nanopb-0.3.9.8 -> nanopb-0.3.9.8 * [new tag] nanopb-0.4.0 -> nanopb-0.4.0 * [new tag] nanopb-0.4.0-dev -> nanopb-0.4.0-dev * [new tag] nanopb-0.4.1 -> nanopb-0.4.1 * [new tag] nanopb-0.4.2 -> nanopb-0.4.2 * [new tag] nanopb-0.4.3 -> nanopb-0.4.3 * [new tag] nanopb-0.4.4 -> nanopb-0.4.4 * [new tag] nanopb-0.4.5 -> nanopb-0.4.5 HEAD is now at 7307ce3 Update README.md (#1042) HEAD is now at 7307ce3 Update README.md (#1042) === updating psa-arch-tests (modules/tee/tf-m/psa-arch-tests): --- psa-arch-tests: initializing Initialized empty Git repository in /home/embo/main_ZMK/modules/tee/tf-m/psa-arch-tests/.git/ --- psa-arch-tests: fetching, need revision 2cadb02a72eacda7042505dcbdd492371e8ce024 remote: Enumerating objects: 14080, done. remote: Counting objects: 100% (3464/3464), done. remote: Compressing objects: 100% (475/475), done. remote: Total 14080 (delta 3155), reused 3019 (delta 2987), pack-reused 10616 (from 2) Receiving objects: 100% (14080/14080), 19.04 MiB | 2.80 MiB/s, done. Resolving deltas: 100% (10638/10638), done. From https://github.com/zephyrproject-rtos/psa-arch-tests * [new branch] zephyr_psa-arch-tests_v1.6_tf-m_v2.3.0 -> refs/west/zephyr_psa-arch-tests_v1.6_tf-m_v2.3.0 * [new tag] zephyr_psa-arch-tests_v1.6_tf-m_v2.2.0 -> zephyr_psa-arch-tests_v1.6_tf-m_v2.2.0 * [new tag] zephyr_psa-arch-tests_v1.6_tf-m_v2.2.2 -> zephyr_psa-arch-tests_v1.6_tf-m_v2.2.2 HEAD is now at 2cadb02 Merge pull request #10 from mswarowsky/tfm_20_upmerge HEAD is now at 2cadb02 Merge pull request #10 from mswarowsky/tfm_20_upmerge === updating sof (modules/audio/sof): --- sof: initializing Initialized empty Git repository in /home/embo/main_ZMK/modules/audio/sof/.git/ --- sof: fetching, need revision bc08c9c606324cfba0c104f4ffaf5dd456cb11d6 remote: Enumerating objects: 135798, done. remote: Counting objects: 100% (1/1), done. remote: Total 135798 (delta 0), reused 0 (delta 0), pack-reused 135797 (from 1) Receiving objects: 100% (135798/135798), 31.57 MiB | 2.87 MiB/s, done. Resolving deltas: 100% (101885/101885), done. From https://github.com/zephyrproject-rtos/sof * [new branch] CAVS_LPRO_ONLY -> refs/west/CAVS_LPRO_ONLY * [new branch] llext-segment -> refs/west/llext-segment * [new branch] zephyr -> refs/west/zephyr * [new branch] zephyr-20220914 -> refs/west/zephyr-20220914 * [new branch] zephyr-20230807 -> refs/west/zephyr-20230807 * [new branch] zephyr-20240122 -> refs/west/zephyr-20240122 * [new branch] zephyr-20240604 -> refs/west/zephyr-20240604 * [new branch] zephyr-20241014 -> refs/west/zephyr-20241014 * [new branch] zephyr-20241203-branch -> refs/west/zephyr-20241203-branch * [new branch] zephyr-3.7 -> refs/west/zephyr-3.7 * [new branch] zephyr-v2.6 -> refs/west/zephyr-v2.6 * [new branch] zephyr-v3.0 -> refs/west/zephyr-v3.0 * [new branch] zephyr_06042023 -> refs/west/zephyr_06042023 * [new branch] zephyr_wip -> refs/west/zephyr_wip * [new branch] zephyr_wip2 -> refs/west/zephyr_wip2 * [new tag] 0ead9e7 -> 0ead9e7 * [new tag] 1.0.0 -> 1.0.0 * [new tag] 1.0.1 -> 1.0.1 * [new tag] 1.0.5 -> 1.0.5 * [new tag] M1.5 -> M1.5 * [new tag] M2 -> M2 * [new tag] post_processing_v1 -> post_processing_v1 * [new tag] releases/cnl/v1.0 -> releases/cnl/v1.0 * [new tag] releases/glk/v1.0 -> releases/glk/v1.0 * [new tag] releases/glk/v1.1 -> releases/glk/v1.1 * [new tag] releases/glk/v12.0 -> releases/glk/v12.0 * [new tag] releases/glk/v12.1 -> releases/glk/v12.1 * [new tag] releases/glk/v2.0 -> releases/glk/v2.0 * [new tag] releases/glk/v3.0 -> releases/glk/v3.0 * [new tag] releases/glk/v4.0 -> releases/glk/v4.0 * [new tag] releases/glk/v5.0 -> releases/glk/v5.0 * [new tag] releases/gp2.0/alpha -> releases/gp2.0/alpha * [new tag] releases/gp2.0/preAlpha -> releases/gp2.0/preAlpha * [new tag] releases/icl/v1.0 -> releases/icl/v1.0 * [new tag] releases/jsl/v3.0 -> releases/jsl/v3.0 * [new tag] releases/jsl/v3.0-rc1 -> releases/jsl/v3.0-rc1 * [new tag] releases/jsl/v3.0-rc2 -> releases/jsl/v3.0-rc2 * [new tag] releases/jsl/v4.0 -> releases/jsl/v4.0 * [new tag] releases/jsl/v4.0-rc1 -> releases/jsl/v4.0-rc1 * [new tag] releases/jsl/v4.0-rc2 -> releases/jsl/v4.0-rc2 * [new tag] releases/tgl/v1.0 -> releases/tgl/v1.0 * [new tag] releases/tgl/v10.0 -> releases/tgl/v10.0 * [new tag] releases/tgl/v10.0-rc1 -> releases/tgl/v10.0-rc1 * [new tag] releases/tgl/v11.0-rc1 -> releases/tgl/v11.0-rc1 * [new tag] releases/tgl/v11.0-rc2 -> releases/tgl/v11.0-rc2 * [new tag] releases/tgl/v11.0-rc3 -> releases/tgl/v11.0-rc3 * [new tag] releases/tgl/v11.0-rc4 -> releases/tgl/v11.0-rc4 * [new tag] releases/tgl/v7.0 -> releases/tgl/v7.0 * [new tag] releases/tgl/v7.0-rc1 -> releases/tgl/v7.0-rc1 * [new tag] releases/tgl/v7.0-rc10 -> releases/tgl/v7.0-rc10 * [new tag] releases/tgl/v7.0-rc2 -> releases/tgl/v7.0-rc2 * [new tag] releases/tgl/v7.0-rc3 -> releases/tgl/v7.0-rc3 * [new tag] releases/tgl/v7.0-rc4 -> releases/tgl/v7.0-rc4 * [new tag] releases/tgl/v7.0-rc5 -> releases/tgl/v7.0-rc5 * [new tag] releases/tgl/v7.0-rc6 -> releases/tgl/v7.0-rc6 * [new tag] releases/tgl/v7.0-rc7 -> releases/tgl/v7.0-rc7 * [new tag] releases/tgl/v7.0-rc8 -> releases/tgl/v7.0-rc8 * [new tag] releases/tgl/v7.0-rc9 -> releases/tgl/v7.0-rc9 * [new tag] releases/tgl/v8.0 -> releases/tgl/v8.0 * [new tag] releases/whl/v1.0 -> releases/whl/v1.0 * [new tag] sof-zephyr-06042023 -> sof-zephyr-06042023 * [new tag] v0.1 -> v0.1 * [new tag] v0.9 -> v0.9 * [new tag] v0.9.1 -> v0.9.1 * [new tag] v0.9.1-rc1 -> v0.9.1-rc1 * [new tag] v0.9.1-rc2 -> v0.9.1-rc2 * [new tag] v0.9.1-rc3 -> v0.9.1-rc3 * [new tag] v0.9.5 -> v0.9.5 * [new tag] v0.9.5-rc1 -> v0.9.5-rc1 * [new tag] v0.9.5-rc2 -> v0.9.5-rc2 * [new tag] v1.0 -> v1.0 * [new tag] v1.0-rc1 -> v1.0-rc1 * [new tag] v1.0-rc2 -> v1.0-rc2 * [new tag] v1.0-rc3 -> v1.0-rc3 * [new tag] v1.0.1 -> v1.0.1 * [new tag] v1.0.2 -> v1.0.2 * [new tag] v1.1 -> v1.1 * [new tag] v1.1-rc1 -> v1.1-rc1 * [new tag] v1.1-rc2 -> v1.1-rc2 * [new tag] v1.1-rc3 -> v1.1-rc3 * [new tag] v1.2 -> v1.2 * [new tag] v1.2-rc1 -> v1.2-rc1 * [new tag] v1.2-rc2 -> v1.2-rc2 * [new tag] v1.3 -> v1.3 * [new tag] v1.3-rc1 -> v1.3-rc1 * [new tag] v1.3-rc2 -> v1.3-rc2 * [new tag] v1.3-rc3 -> v1.3-rc3 * [new tag] v1.3.1 -> v1.3.1 * [new tag] v1.4 -> v1.4 * [new tag] v1.4-rc1 -> v1.4-rc1 * [new tag] v1.4.1 -> v1.4.1 * [new tag] v1.4.2 -> v1.4.2 * [new tag] v1.4.3 -> v1.4.3 * [new tag] v1.5 -> v1.5 * [new tag] v1.5-rc1 -> v1.5-rc1 * [new tag] v1.5-rc2 -> v1.5-rc2 * [new tag] v1.5-rc3 -> v1.5-rc3 * [new tag] v1.5-rc4 -> v1.5-rc4 * [new tag] v1.5-rc5 -> v1.5-rc5 * [new tag] v1.5.1 -> v1.5.1 * [new tag] v1.6 -> v1.6 * [new tag] v1.6-rc1 -> v1.6-rc1 * [new tag] v1.6-rc2 -> v1.6-rc2 * [new tag] v1.6-rc3 -> v1.6-rc3 * [new tag] v1.6.1 -> v1.6.1 * [new tag] zephyr-20220412.1 -> zephyr-20220412.1 * [new tag] zephyr-20230807 -> zephyr-20230807 * [new tag] zephyr-20240122 -> zephyr-20240122 * [new tag] zephyr-20240807 -> zephyr-20240807 * [new tag] zephyr-20241203 -> zephyr-20241203 * [new tag] zephyr-20250728 -> zephyr-20250728 HEAD is now at bc08c9c60 app: zephyr still requires cmake version 3.20.0 HEAD is now at bc08c9c60 app: zephyr still requires cmake version 3.20.0 === updating tf-m-tests (modules/tee/tf-m/tf-m-tests): --- tf-m-tests: initializing Initialized empty Git repository in /home/embo/main_ZMK/modules/tee/tf-m/tf-m-tests/.git/ --- tf-m-tests: fetching, need revision 502ea90105ee18f20c78f710e2ba2ded0fc0756e remote: Enumerating objects: 8035, done. remote: Counting objects: 100% (613/613), done. remote: Compressing objects: 100% (146/146), done. remote: Total 8035 (delta 494), reused 467 (delta 467), pack-reused 7422 (from 1) Receiving objects: 100% (8035/8035), 9.79 MiB | 3.00 MiB/s, done. Resolving deltas: 100% (5752/5752), done. From https://github.com/zephyrproject-rtos/tf-m-tests * [new branch] v3.7-branch -> refs/west/v3.7-branch * [new branch] zephyr_tf-m-tests_v2.3.0 -> refs/west/zephyr_tf-m-tests_v2.3.0 * [new tag] zephyr_tf-m-tests_v2.2.0 -> zephyr_tf-m-tests_v2.2.0 * [new tag] zephyr_tf-m-tests_v2.2.2 -> zephyr_tf-m-tests_v2.2.2 HEAD is now at 502ea90 Merge pull request #11 from tomi-font/update_2.1.1 HEAD is now at 502ea90 Merge pull request #11 from tomi-font/update_2.1.1 === updating tflite-micro (optional/modules/lib/tflite-micro): --- tflite-micro: initializing Initialized empty Git repository in /home/embo/main_ZMK/optional/modules/lib/tflite-micro/.git/ --- tflite-micro: fetching, need revision 8d404de73acf7687831e16d88e86e4f73cfddf8e remote: Enumerating objects: 24905, done. remote: Counting objects: 100% (471/471), done. remote: Compressing objects: 100% (187/187), done. remote: Total 24905 (delta 385), reused 284 (delta 284), pack-reused 24434 (from 2) Receiving objects: 100% (24905/24905), 34.92 MiB | 3.03 MiB/s, done. Resolving deltas: 100% (17985/17985), done. From https://github.com/zephyrproject-rtos/tflite-micro * [new branch] main -> refs/west/main * [new branch] zephyr -> refs/west/zephyr * [new branch] zephyr-v3.6.0 -> refs/west/zephyr-v3.6.0 * [new branch] zephyr-v4.1.0 -> refs/west/zephyr-v4.1.0 * [new branch] zephyr-v4.4.0 -> refs/west/zephyr-v4.4.0 * [new tag] zephyr_202108023 -> zephyr_202108023 * [new tag] zephyr_20230809 -> zephyr_20230809 * [new tag] zephyr_20240627 -> zephyr_20240627 HEAD is now at 8d404de7 third_party_static: exported HEAD is now at 8d404de7 third_party_static: exported === updating thrift (optional/modules/lib/thrift): --- thrift: initializing Initialized empty Git repository in /home/embo/main_ZMK/optional/modules/lib/thrift/.git/ --- thrift: fetching, need revision 10023645a0e6cb7ce23fcd7fd3dbac9f18df6234 remote: Enumerating objects: 77071, done. remote: Total 77071 (delta 0), reused 0 (delta 0), pack-reused 77071 (from 1) Receiving objects: 100% (77071/77071), 32.62 MiB | 3.36 MiB/s, done. Resolving deltas: 100% (53813/53813), done. From https://github.com/zephyrproject-rtos/thrift * [new branch] add-zephyr-module-dir -> refs/west/add-zephyr-module-dir * [new branch] make-external-module -> refs/west/make-external-module * [new branch] master -> refs/west/master * [new branch] update-zephyr-to-thrift-0.20.0 -> refs/west/update-zephyr-to-thrift-0.20.0 * [new branch] zephyr -> refs/west/zephyr HEAD is now at 10023645a Merge pull request #1 from zephyrproject-rtos/add-zephyr-module-dir HEAD is now at 10023645a Merge pull request #1 from zephyrproject-rtos/add-zephyr-module-dir === updating zephyr-lang-rust (modules/lang/rust): --- zephyr-lang-rust: initializing Initialized empty Git repository in /home/embo/main_ZMK/modules/lang/rust/.git/ --- zephyr-lang-rust: fetching, need revision 37dc7fac3fb0372bc0e78e022bef87fcce68c48d remote: Enumerating objects: 3139, done. remote: Counting objects: 100% (1479/1479), done. remote: Compressing objects: 100% (584/584), done. remote: Total 3139 (delta 1105), reused 895 (delta 895), pack-reused 1660 (from 1) Receiving objects: 100% (3139/3139), 664.00 KiB | 2.36 MiB/s, done. Resolving deltas: 100% (1952/1952), done. From https://github.com/zephyrproject-rtos/zephyr-lang-rust * [new branch] atomic-objects -> refs/west/atomic-objects * [new branch] bindgen-0.72.1 -> refs/west/bindgen-0.72.1 * [new branch] bounded -> refs/west/bounded * [new branch] build -> refs/west/build * [new branch] clippy -> refs/west/clippy * [new branch] critical -> refs/west/critical * [new branch] davidb-ci-davidb-base -> refs/west/davidb-ci-davidb-base * [new branch] davidb-docs -> refs/west/davidb-docs * [new branch] davidb-dt-all-properties -> refs/west/davidb-dt-all-properties * [new branch] davidb-embassy-upgrade -> refs/west/davidb-embassy-upgrade * [new branch] davidb-gpio-async-token -> refs/west/davidb-gpio-async-token * [new branch] davidb-i2c -> refs/west/davidb-i2c * [new branch] davidb-led-strip -> refs/west/davidb-led-strip * [new branch] davidb-pwm-led -> refs/west/davidb-pwm-led * [new branch] deprecate-old-async -> refs/west/deprecate-old-async * [new branch] devel -> refs/west/devel * [new branch] doc-update -> refs/west/doc-update * [new branch] dt -> refs/west/dt * [new branch] fix-ci -> refs/west/fix-ci * [new branch] fix-gpio -> refs/west/fix-gpio * [new branch] fix-ra4mq -> refs/west/fix-ra4mq * [new branch] fix101 -> refs/west/fix101 * [new branch] fixdocpush -> refs/west/fixdocpush * [new branch] fmt -> refs/west/fmt * [new branch] for-4.0 -> refs/west/for-4.0 * [new branch] hack -> refs/west/hack * [new branch] i2c -> refs/west/i2c * [new branch] kobj -> refs/west/kobj * [new branch] lock-cargo -> refs/west/lock-cargo * [new branch] main -> refs/west/main * [new branch] notoken -> refs/west/notoken * [new branch] onelabels -> refs/west/onelabels * [new branch] phil-timeout -> refs/west/phil-timeout * [new branch] pr039 -> refs/west/pr039 * [new branch] reldebug -> refs/west/reldebug * [new branch] tasks -> refs/west/tasks * [new branch] test132 -> refs/west/test132 * [new branch] thread -> refs/west/thread * [new branch] time -> refs/west/time * [new branch] v4.0-branch -> refs/west/v4.0-branch * [new branch] v4.1-branch -> refs/west/v4.1-branch * [new branch] work -> refs/west/work * [new branch] workq-init -> refs/west/workq-init * [new branch] zephyr-setup-failure -> refs/west/zephyr-setup-failure HEAD is now at 37dc7fa zephyr: printk: Use proper type for `c_char` HEAD is now at 37dc7fa zephyr: printk: Use proper type for `c_char` === updating zscilib (modules/lib/zscilib): --- zscilib: initializing Initialized empty Git repository in /home/embo/main_ZMK/modules/lib/zscilib/.git/ --- zscilib: fetching, need revision ee1b287d9dd07208d2cc52284240ac25bb66eae3 remote: Enumerating objects: 5470, done. remote: Counting objects: 100% (601/601), done. remote: Compressing objects: 100% (168/168), done. remote: Total 5470 (delta 451), reused 439 (delta 421), pack-reused 4869 (from 2) Receiving objects: 100% (5470/5470), 3.10 MiB | 1.89 MiB/s, done. Resolving deltas: 100% (4068/4068), done. From https://github.com/zephyrproject-rtos/zscilib * [new branch] gh-pages -> refs/west/gh-pages * [new branch] master -> refs/west/master * [new branch] revert-38-fix_zephyr_3_1 -> refs/west/revert-38-fix_zephyr_3_1 * [new tag] v0.2.0-rc1 -> v0.2.0-rc1 HEAD is now at ee1b287 samples/tests: Update for hwmv2 board names HEAD is now at ee1b287 samples/tests: Update for hwmv2 board names === updating acpica (modules/lib/acpica): --- acpica: initializing Initialized empty Git repository in /home/embo/main_ZMK/modules/lib/acpica/.git/ --- acpica: fetching, need revision 8d24867bc9c9d81c81eeac59391cda59333affd4 remote: Enumerating objects: 144870, done. remote: Counting objects: 100% (1051/1051), done. remote: Compressing objects: 100% (177/177), done. remote: Total 144870 (delta 923), reused 874 (delta 874), pack-reused 143819 (from 2) Receiving objects: 100% (144870/144870), 158.58 MiB | 3.15 MiB/s, done. Resolving deltas: 100% (103003/103003), done. From https://github.com/zephyrproject-rtos/acpica * [new branch] master -> refs/west/master * [new branch] zephyr -> refs/west/zephyr * [new branch] zephyr-v3.5 -> refs/west/zephyr-v3.5 HEAD is now at 8d24867bc Merge pull request #5 from dcpleung/kernel/mm_z_phys_map_unmap_rename HEAD is now at 8d24867bc Merge pull request #5 from dcpleung/kernel/mm_z_phys_map_unmap_rename === updating cmsis (modules/hal/cmsis): --- cmsis: initializing Initialized empty Git repository in /home/embo/main_ZMK/modules/hal/cmsis/.git/ --- cmsis: fetching, need revision d1b8b20b6278615b00e136374540eb1c00dcabe7 remote: Enumerating objects: 1413, done. remote: Counting objects: 100% (225/225), done. remote: Compressing objects: 100% (118/118), done. remote: Total 1413 (delta 139), reused 108 (delta 107), pack-reused 1188 (from 2) Receiving objects: 100% (1413/1413), 3.16 MiB | 2.81 MiB/s, done. Resolving deltas: 100% (1017/1017), done. From https://github.com/zephyrproject-rtos/cmsis * [new branch] master -> refs/west/master HEAD is now at d1b8b20 Backport CMSIS_6#102 to CMSIS 5.9.0 HEAD is now at d1b8b20 Backport CMSIS_6#102 to CMSIS 5.9.0 === updating cmsis-dsp (modules/lib/cmsis-dsp): --- cmsis-dsp: initializing Initialized empty Git repository in /home/embo/main_ZMK/modules/lib/cmsis-dsp/.git/ --- cmsis-dsp: fetching, need revision d80a49b2bb186317dc1db4ac88da49c0ab77e6e7 remote: Enumerating objects: 29615, done. remote: Counting objects: 100% (1986/1986), done. remote: Compressing objects: 100% (495/495), done. remote: Total 29615 (delta 1665), reused 1491 (delta 1491), pack-reused 27629 (from 2) Receiving objects: 100% (29615/29615), 83.51 MiB | 3.11 MiB/s, done. Resolving deltas: 100% (19092/19092), done. From https://github.com/zephyrproject-rtos/cmsis-dsp * [new branch] main -> refs/west/main * [new branch] zephyr -> refs/west/zephyr * [new branch] zephyr-3.6 -> refs/west/zephyr-3.6 * [new branch] zephyr-4.0 -> refs/west/zephyr-4.0 * [new branch] zephyr-4.4 -> refs/west/zephyr-4.4 HEAD is now at d80a49b2 do not generate warnings when scalar functions are used with MVE HEAD is now at d80a49b2 do not generate warnings when scalar functions are used with MVE === updating cmsis-nn (modules/lib/cmsis-nn): --- cmsis-nn: initializing Initialized empty Git repository in /home/embo/main_ZMK/modules/lib/cmsis-nn/.git/ --- cmsis-nn: fetching, need revision e9328d612ea3ea7d0d210d3ac16ea8667c01abdd remote: Enumerating objects: 11623, done. remote: Counting objects: 100% (1544/1544), done. remote: Compressing objects: 100% (197/197), done. remote: Total 11623 (delta 1463), reused 1347 (delta 1347), pack-reused 10079 (from 1) Receiving objects: 100% (11623/11623), 5.73 MiB | 2.34 MiB/s, done. Resolving deltas: 100% (7555/7555), done. From https://github.com/zephyrproject-rtos/cmsis-nn * [new branch] main -> refs/west/main * [new branch] zephyr -> refs/west/zephyr * [new branch] zephyr-v6.0.0 -> refs/west/zephyr-v6.0.0 * [new branch] zephyr-v7.0.0 -> refs/west/zephyr-v7.0.0 HEAD is now at e9328d6 manifest: zephyr module file HEAD is now at e9328d6 manifest: zephyr module file === updating cmsis_6 (modules/lib/cmsis_6): --- cmsis_6: initializing Initialized empty Git repository in /home/embo/main_ZMK/modules/lib/cmsis_6/.git/ --- cmsis_6: fetching, need revision 783317a3072554acbac86cca2ff24928cbf98d30 remote: Enumerating objects: 18582, done. remote: Counting objects: 100% (1033/1033), done. remote: Compressing objects: 100% (260/260), done. remote: Total 18582 (delta 837), reused 773 (delta 773), pack-reused 17549 (from 5) Receiving objects: 100% (18582/18582), 33.27 MiB | 2.96 MiB/s, done. Resolving deltas: 100% (12477/12477), done. From https://github.com/zephyrproject-rtos/CMSIS_6 * [new branch] main -> refs/west/main * [new branch] stable-pre-4.3.0-release -> refs/west/stable-pre-4.3.0-release * [new branch] upstream -> refs/west/upstream * [new branch] upstream_main -> refs/west/upstream_main * [new branch] v4.3-branch -> refs/west/v4.3-branch * [new branch] v4.4-branch -> refs/west/v4.4-branch HEAD is now at 783317a3 TZ applications can be secure-only (#204) HEAD is now at 783317a3 TZ applications can be secure-only (#204) === updating fatfs (modules/fs/fatfs): --- fatfs: initializing Initialized empty Git repository in /home/embo/main_ZMK/modules/fs/fatfs/.git/ --- fatfs: fetching, need revision 16245c7c41d2b79e74984f49b5202551786b8a9b remote: Enumerating objects: 203, done. remote: Counting objects: 100% (67/67), done. remote: Compressing objects: 100% (42/42), done. remote: Total 203 (delta 32), reused 39 (delta 23), pack-reused 136 (from 1) Receiving objects: 100% (203/203), 1.57 MiB | 2.23 MiB/s, done. Resolving deltas: 100% (111/111), done. From https://github.com/zephyrproject-rtos/fatfs * [new branch] master -> refs/west/master * [new branch] v1.14-branch -> refs/west/v1.14-branch HEAD is now at 16245c7 fs: Update driver to version 0.15a HEAD is now at 16245c7 fs: Update driver to version 0.15a === updating hal_adi (modules/hal/adi): --- hal_adi: initializing Initialized empty Git repository in /home/embo/main_ZMK/modules/hal/adi/.git/ --- hal_adi: fetching, need revision 633fcecf3717aaa22079cf6121627a879f24df51 remote: Enumerating objects: 24087, done. remote: Counting objects: 100% (2867/2867), done. remote: Compressing objects: 100% (1400/1400), done. remote: Total 24087 (delta 1726), reused 1656 (delta 1455), pack-reused 21220 (from 1) Receiving objects: 100% (24087/24087), 8.72 MiB | 2.40 MiB/s, done. Resolving deltas: 100% (18949/18949), done. From https://github.com/zephyrproject-rtos/hal_adi * [new branch] main -> refs/west/main * [new branch] msdk-export -> refs/west/msdk-export HEAD is now at 633fcecf fix(Other): Fix typo with `#include ` in Zephyr wrapper (#1276) HEAD is now at 633fcecf fix(Other): Fix typo with `#include ` in Zephyr wrapper (#1276) === updating hal_ambiq (modules/hal/ambiq): --- hal_ambiq: initializing Initialized empty Git repository in /home/embo/main_ZMK/modules/hal/ambiq/.git/ --- hal_ambiq: fetching, need revision 87a188b91aca22ce3ce7deb4a1cbf7780d784673 remote: Enumerating objects: 1764, done. remote: Counting objects: 100% (1063/1063), done. remote: Compressing objects: 100% (286/286), done. remote: Total 1764 (delta 856), reused 777 (delta 777), pack-reused 701 (from 2) Receiving objects: 100% (1764/1764), 5.20 MiB | 2.13 MiB/s, done. Resolving deltas: 100% (1333/1333), done. From https://github.com/zephyrproject-rtos/hal_ambiq * [new branch] main -> refs/west/main HEAD is now at 87a188b hal: ambiq: add apollo3x BT controller deinitialization API. HEAD is now at 87a188b hal: ambiq: add apollo3x BT controller deinitialization API. === updating hal_atmel (modules/hal/atmel): --- hal_atmel: initializing Initialized empty Git repository in /home/embo/main_ZMK/modules/hal/atmel/.git/ --- hal_atmel: fetching, need revision da767444cce3c1d9ccd6b8a35fd7c67dc82d489c remote: Enumerating objects: 4607, done. remote: Counting objects: 100% (256/256), done. remote: Compressing objects: 100% (64/64), done. remote: Total 4607 (delta 213), reused 192 (delta 192), pack-reused 4351 (from 4) Receiving objects: 100% (4607/4607), 6.27 MiB | 2.19 MiB/s, done. Resolving deltas: 100% (3394/3394), done. From https://github.com/zephyrproject-rtos/hal_atmel * [new branch] master -> refs/west/master * [new branch] v1.14-branch -> refs/west/v1.14-branch HEAD is now at da76744 samr35: dac: Rename EMPTY bit-fields to avoid name collision. HEAD is now at da76744 samr35: dac: Rename EMPTY bit-fields to avoid name collision. === updating hal_espressif (modules/hal/espressif): --- hal_espressif: initializing Initialized empty Git repository in /home/embo/main_ZMK/modules/hal/espressif/.git/ --- hal_espressif: fetching, need revision 202c59552dc98e5cd02386313e1977ecb17a131f remote: Enumerating objects: 324396, done. remote: Counting objects: 100% (2598/2598), done. remote: Compressing objects: 100% (1503/1503), done. remote: Total 324396 (delta 1291), reused 1105 (delta 1092), pack-reused 321798 (from 4) Receiving objects: 100% (324396/324396), 187.88 MiB | 3.20 MiB/s, done. Resolving deltas: 100% (232524/232524), done. From https://github.com/zephyrproject-rtos/hal_espressif * [new branch] hal_idf-4.3-zep-3.6 -> refs/west/hal_idf-4.3-zep-3.6 * [new branch] hal_idf-4.4_zep-3.7 -> refs/west/hal_idf-4.4_zep-3.7 * [new branch] hal_idf-5.1_zep-4.0 -> refs/west/hal_idf-5.1_zep-4.0 * [new branch] hal_idf-5.1_zep-4.2 -> refs/west/hal_idf-5.1_zep-4.2 * [new branch] hal_v4.2 -> refs/west/hal_v4.2 * [new branch] hal_v4.4 -> refs/west/hal_v4.4 * [new branch] main -> refs/west/main * [new branch] v4.4-branch -> refs/west/v4.4-branch * [new branch] zephyr -> refs/west/zephyr * [new tag] release/v4.3 -> release/v4.3 * [new tag] snapshot/1 -> snapshot/1 HEAD is now at 202c59552d cache: get cpu id from register HEAD is now at 202c59552d cache: get cpu id from register === updating hal_ethos_u (modules/hal/ethos_u): --- hal_ethos_u: initializing Initialized empty Git repository in /home/embo/main_ZMK/modules/hal/ethos_u/.git/ --- hal_ethos_u: fetching, need revision 50ddffca1cc700112f25ad9bc077915a0355ee5d remote: Enumerating objects: 751, done. remote: Counting objects: 100% (751/751), done. remote: Compressing objects: 100% (354/354), done. remote: Total 751 (delta 467), reused 645 (delta 389), pack-reused 0 (from 0) Receiving objects: 100% (751/751), 578.47 KiB | 1.17 MiB/s, done. Resolving deltas: 100% (467/467), done. From https://github.com/zephyrproject-rtos/hal_ethos_u * [new branch] main -> refs/west/main * [new branch] upmerge_20220209 -> refs/west/upmerge_20220209 * [new branch] v4.3-branch -> refs/west/v4.3-branch HEAD is now at 50ddffc Cache optimizations HEAD is now at 50ddffc Cache optimizations === updating hal_gigadevice (modules/hal/gigadevice): --- hal_gigadevice: initializing Initialized empty Git repository in /home/embo/main_ZMK/modules/hal/gigadevice/.git/ --- hal_gigadevice: fetching, need revision 2994b7dde8b0b0fa9b9c0ccb13474b6a486cddc3 remote: Enumerating objects: 1755, done. remote: Counting objects: 100% (1305/1305), done. remote: Compressing objects: 100% (560/560), done. remote: Total 1755 (delta 864), reused 967 (delta 705), pack-reused 450 (from 1) Receiving objects: 100% (1755/1755), 2.33 MiB | 1.71 MiB/s, done. Resolving deltas: 100% (989/989), done. From https://github.com/zephyrproject-rtos/hal_gigadevice * [new branch] main -> refs/west/main HEAD is now at 2994b7d README.md: add pllmf and pack exception for gd32a50x HEAD is now at 2994b7d README.md: add pllmf and pack exception for gd32a50x === updating hal_intel (modules/hal/intel): --- hal_intel: initializing Initialized empty Git repository in /home/embo/main_ZMK/modules/hal/intel/.git/ --- hal_intel: fetching, need revision 0355bb816263c54eed23c7781034447af5d8200c remote: Enumerating objects: 1426, done. remote: Counting objects: 100% (505/505), done. remote: Compressing objects: 100% (186/186), done. remote: Total 1426 (delta 334), reused 319 (delta 319), pack-reused 921 (from 1) Receiving objects: 100% (1426/1426), 394.85 KiB | 1.45 MiB/s, done. Resolving deltas: 100% (890/890), done. From https://github.com/zephyrproject-rtos/hal_intel * [new branch] main -> refs/west/main HEAD is now at 0355bb8 pm: add support for ptl ish d0i2/ipapg HEAD is now at 0355bb8 pm: add support for ptl ish d0i2/ipapg === updating hal_nordic (modules/hal/nordic): --- hal_nordic: initializing Initialized empty Git repository in /home/embo/main_ZMK/modules/hal/nordic/.git/ --- hal_nordic: fetching, need revision 37ca068d7b013fb65a2acc9306bffa48a3e72839 remote: Enumerating objects: 14375, done. remote: Counting objects: 100% (13/13), done. remote: Compressing objects: 100% (13/13), done. remote: Total 14375 (delta 1), reused 1 (delta 0), pack-reused 14362 (from 1) Receiving objects: 100% (14375/14375), 39.81 MiB | 3.28 MiB/s, done. Resolving deltas: 100% (10624/10624), done. From https://github.com/zephyrproject-rtos/hal_nordic * [new branch] Temperature_service_sub_disabling -> refs/west/Temperature_service_sub_disabling * [new branch] master -> refs/west/master * [new branch] nrfx-removed -> refs/west/nrfx-removed * [new branch] v1.14-branch -> refs/west/v1.14-branch * [new tag] nrfx-2.10.0 -> nrfx-2.10.0 * [new tag] nrfx-2.11.0 -> nrfx-2.11.0 * [new tag] nrfx-3.0.0 -> nrfx-3.0.0 * [new tag] nrfx-3.12.1 -> nrfx-3.12.1 * [new tag] nrfx-3.9.0 -> nrfx-3.9.0 * [new tag] nrfx-4.0.1 -> nrfx-4.0.1 * [new tag] nrfx-4.2.1 -> nrfx-4.2.1 HEAD is now at 37ca068 drivers: nrfx_usbreg: clear USBPWRRDY event on initialization HEAD is now at 37ca068 drivers: nrfx_usbreg: clear USBPWRRDY event on initialization === updating hal_nuvoton (modules/hal/nuvoton): --- hal_nuvoton: initializing Initialized empty Git repository in /home/embo/main_ZMK/modules/hal/nuvoton/.git/ --- hal_nuvoton: fetching, need revision 466c3eed9c98453fb23953bf0e0427fea01924be remote: Enumerating objects: 1609, done. remote: Counting objects: 100% (657/657), done. remote: Compressing objects: 100% (389/389), done. remote: Total 1609 (delta 388), reused 412 (delta 258), pack-reused 952 (from 2) Receiving objects: 100% (1609/1609), 4.36 MiB | 2.38 MiB/s, done. Resolving deltas: 100% (892/892), done. From https://github.com/zephyrproject-rtos/hal_nuvoton * [new branch] master -> refs/west/master HEAD is now at 466c3ee hal: nuvoton: m2l31: fixed TRUE redefined warning HEAD is now at 466c3ee hal: nuvoton: m2l31: fixed TRUE redefined warning === updating hal_quicklogic (modules/hal/quicklogic): --- hal_quicklogic: initializing Initialized empty Git repository in /home/embo/main_ZMK/modules/hal/quicklogic/.git/ --- hal_quicklogic: fetching, need revision bad894440fe72c814864798c8e3a76d13edffb6c remote: Enumerating objects: 74, done. remote: Counting objects: 100% (74/74), done. remote: Compressing objects: 100% (55/55), done. remote: Total 74 (delta 17), reused 66 (delta 15), pack-reused 0 (from 0) Unpacking objects: 100% (74/74), 76.13 KiB | 1.44 MiB/s, done. From https://github.com/zephyrproject-rtos/hal_quicklogic * [new branch] master -> refs/west/master HEAD is now at bad8944 HAL: eoss3_dev: add missing `__cplusplus` handling HEAD is now at bad8944 HAL: eoss3_dev: add missing `__cplusplus` handling === updating hal_renesas (modules/hal/renesas): --- hal_renesas: initializing Initialized empty Git repository in /home/embo/main_ZMK/modules/hal/renesas/.git/ --- hal_renesas: fetching, need revision 3204903bdc5eda6869a40363560a69369c8d0e22 remote: Enumerating objects: 11957, done. remote: Counting objects: 100% (4419/4419), done. remote: Compressing objects: 100% (1367/1367), done. remote: Total 11957 (delta 3707), reused 3079 (delta 3039), pack-reused 7538 (from 2) Receiving objects: 100% (11957/11957), 12.31 MiB | 2.97 MiB/s, done. Resolving deltas: 100% (7868/7868), done. From https://github.com/zephyrproject-rtos/hal_renesas * [new branch] main -> refs/west/main HEAD is now at 3204903 hal: renesas: ra: Modify BSP_PRV_IELS_ENUM for build process HEAD is now at 3204903 hal: renesas: ra: Modify BSP_PRV_IELS_ENUM for build process === updating hal_rpi_pico (modules/hal/rpi_pico): --- hal_rpi_pico: initializing Initialized empty Git repository in /home/embo/main_ZMK/modules/hal/rpi_pico/.git/ --- hal_rpi_pico: fetching, need revision 7b57b24588797e6e7bf18b6bda168e6b96374264 remote: Enumerating objects: 13939, done. remote: Total 13939 (delta 0), reused 0 (delta 0), pack-reused 13939 (from 1) Receiving objects: 100% (13939/13939), 6.30 MiB | 2.65 MiB/s, done. Resolving deltas: 100% (7592/7592), done. From https://github.com/zephyrproject-rtos/hal_rpi_pico * [new branch] zephyr -> refs/west/zephyr * [new tag] 1.0.0 -> 1.0.0 * [new tag] 1.0.1 -> 1.0.1 * [new tag] 1.1.0 -> 1.1.0 * [new tag] 1.1.1 -> 1.1.1 * [new tag] 1.1.2 -> 1.1.2 * [new tag] 1.2.0 -> 1.2.0 * [new tag] 1.3.0 -> 1.3.0 HEAD is now at 7b57b24 Merge pull request #8 from ajf58/merge-2.1.0 HEAD is now at 7b57b24 Merge pull request #8 from ajf58/merge-2.1.0 === updating hal_silabs (modules/hal/silabs): --- hal_silabs: initializing Initialized empty Git repository in /home/embo/main_ZMK/modules/hal/silabs/.git/ --- hal_silabs: fetching, need revision 8a173e9e566a396a19d18da4661cb54ce098f268 remote: Enumerating objects: 15285, done. remote: Counting objects: 100% (3341/3341), done. remote: Compressing objects: 100% (1888/1888), done. remote: Total 15285 (delta 2615), reused 1589 (delta 1412), pack-reused 11944 (from 3) Receiving objects: 100% (15285/15285), 25.13 MiB | 3.09 MiB/s, done. Resolving deltas: 100% (10139/10139), done. From https://github.com/zephyrproject-rtos/hal_silabs * [new branch] main -> refs/west/main * [new branch] v4.3-branch -> refs/west/v4.3-branch HEAD is now at 8a173e9 wiseconnect: Fix si91x_bus event during platform deinitialization HEAD is now at 8a173e9 wiseconnect: Fix si91x_bus event during platform deinitialization === updating hal_tdk (modules/hal/tdk): --- hal_tdk: initializing Initialized empty Git repository in /home/embo/main_ZMK/modules/hal/tdk/.git/ --- hal_tdk: fetching, need revision 6727477af1e46fa43878102489b9672a9d24e39f remote: Enumerating objects: 293, done. remote: Counting objects: 100% (157/157), done. remote: Compressing objects: 100% (104/104), done. remote: Total 293 (delta 75), reused 80 (delta 49), pack-reused 136 (from 1) Receiving objects: 100% (293/293), 354.16 KiB | 1.58 MiB/s, done. Resolving deltas: 100% (119/119), done. From https://github.com/zephyrproject-rtos/hal_tdk * [new branch] main -> refs/west/main * [new branch] v4.2-branch -> refs/west/v4.2-branch HEAD is now at 6727477 Merge pull request #8 from tdk-invn-oss/main HEAD is now at 6727477 Merge pull request #8 from tdk-invn-oss/main === updating hal_telink (modules/hal/telink): --- hal_telink: initializing Initialized empty Git repository in /home/embo/main_ZMK/modules/hal/telink/.git/ --- hal_telink: fetching, need revision 4226c7fc17d5a34e557d026d428fc766191a0800 remote: Enumerating objects: 336, done. remote: Counting objects: 100% (254/254), done. remote: Compressing objects: 100% (161/161), done. remote: Total 336 (delta 143), reused 93 (delta 93), pack-reused 82 (from 1) Receiving objects: 100% (336/336), 352.83 KiB | 1.35 MiB/s, done. Resolving deltas: 100% (163/163), done. From https://github.com/zephyrproject-rtos/hal_telink * [new branch] main -> refs/west/main HEAD is now at 4226c7f drivers: Disable BLE support HEAD is now at 4226c7f drivers: Disable BLE support === updating hal_wch (modules/hal/wch): --- hal_wch: initializing Initialized empty Git repository in /home/embo/main_ZMK/modules/hal/wch/.git/ --- hal_wch: fetching, need revision 1de9d3e406726702ce7cfc504509a02ecc463554 remote: Enumerating objects: 47, done. remote: Counting objects: 100% (47/47), done. remote: Compressing objects: 100% (26/26), done. remote: Total 47 (delta 21), reused 40 (delta 19), pack-reused 0 (from 0) Unpacking objects: 100% (47/47), 633.00 KiB | 1.73 MiB/s, done. From https://github.com/zephyrproject-rtos/hal_wch * [new branch] main -> refs/west/main HEAD is now at 1de9d3e Add hal_wch based on the 'ch32v003fun' project HEAD is now at 1de9d3e Add hal_wch based on the 'ch32v003fun' project === updating hal_wurthelektronik (modules/hal/wurthelektronik): --- hal_wurthelektronik: initializing Initialized empty Git repository in /home/embo/main_ZMK/modules/hal/wurthelektronik/.git/ --- hal_wurthelektronik: fetching, need revision e3e2797b224fc48fdef1bc3e5a12a7c73108bba2 remote: Enumerating objects: 186, done. remote: Counting objects: 100% (186/186), done. remote: Compressing objects: 100% (118/118), done. remote: Total 186 (delta 106), reused 138 (delta 66), pack-reused 0 (from 0) Receiving objects: 100% (186/186), 298.13 KiB | 1.58 MiB/s, done. Resolving deltas: 100% (106/106), done. From https://github.com/zephyrproject-rtos/hal_wurthelektronik * [new branch] zephyr -> refs/west/zephyr HEAD is now at e3e2797 Remove preprocessor warnings for not enabling float HEAD is now at e3e2797 Remove preprocessor warnings for not enabling float === updating hostap (modules/lib/hostap): --- hostap: initializing Initialized empty Git repository in /home/embo/main_ZMK/modules/lib/hostap/.git/ --- hostap: fetching, need revision 697fd2cf5cbbd0c5375fc34761b6a9d7489a67d2 remote: Enumerating objects: 127639, done. remote: Counting objects: 100% (2567/2567), done. remote: Compressing objects: 100% (199/199), done. remote: Total 127639 (delta 2447), reused 2368 (delta 2368), pack-reused 125072 (from 2) Receiving objects: 100% (127639/127639), 25.73 MiB | 2.90 MiB/s, done. Resolving deltas: 100% (105002/105002), done. From https://github.com/zephyrproject-rtos/hostap * [new branch] main -> refs/west/main * [new branch] revert-121-remove_md5 -> refs/west/revert-121-remove_md5 * [new tag] hostap_2_11 -> hostap_2_11 HEAD is now at 697fd2cf5 [noup] zephyr: Fix WPA3 connection issue HEAD is now at 697fd2cf5 [noup] zephyr: Fix WPA3 connection issue === updating liblc3 (modules/lib/liblc3): --- liblc3: initializing Initialized empty Git repository in /home/embo/main_ZMK/modules/lib/liblc3/.git/ --- liblc3: fetching, need revision 48bbd3eacd36e99a57317a0a4867002e0b09e183 remote: Enumerating objects: 995, done. remote: Counting objects: 100% (329/329), done. remote: Compressing objects: 100% (94/94), done. remote: Total 995 (delta 270), reused 235 (delta 235), pack-reused 666 (from 2) Receiving objects: 100% (995/995), 1.87 MiB | 1.60 MiB/s, done. Resolving deltas: 100% (638/638), done. From https://github.com/zephyrproject-rtos/liblc3 * [new branch] main -> refs/west/main HEAD is now at 48bbd3e Rename lc3 python package to lc3py, and bump version to 1.1.2 HEAD is now at 48bbd3e Rename lc3 python package to lc3py, and bump version to 1.1.2 === updating libmctp (modules/lib/libmctp): --- libmctp: initializing Initialized empty Git repository in /home/embo/main_ZMK/modules/lib/libmctp/.git/ --- libmctp: fetching, need revision b97860e78998551af99931ece149eeffc538bdb1 remote: Enumerating objects: 1558, done. remote: Counting objects: 100% (653/653), done. remote: Compressing objects: 100% (127/127), done. remote: Total 1558 (delta 574), reused 526 (delta 526), pack-reused 905 (from 3) Receiving objects: 100% (1558/1558), 459.40 KiB | 2.14 MiB/s, done. Resolving deltas: 100% (991/991), done. From https://github.com/zephyrproject-rtos/libmctp * [new branch] master -> refs/west/master * [new branch] zephyr -> refs/west/zephyr HEAD is now at b97860e build MCTP zephyr library only when CONFIG_MCTP is enabled HEAD is now at b97860e build MCTP zephyr library only when CONFIG_MCTP is enabled === updating libmetal (modules/hal/libmetal): --- libmetal: initializing Initialized empty Git repository in /home/embo/main_ZMK/modules/hal/libmetal/.git/ --- libmetal: fetching, need revision 3e8781aae9d7285203118c05bc01d4eb0ca565a7 remote: Enumerating objects: 1270, done. remote: Counting objects: 100% (426/426), done. remote: Compressing objects: 100% (239/239), done. remote: Total 1270 (delta 258), reused 222 (delta 179), pack-reused 844 (from 1) Receiving objects: 100% (1270/1270), 340.52 KiB | 1.47 MiB/s, done. Resolving deltas: 100% (789/789), done. From https://github.com/zephyrproject-rtos/libmetal * [new branch] main -> refs/west/main * [new branch] v1.14-branch -> refs/west/v1.14-branch HEAD is now at 3e8781a lib: update libmetal to release v2024.10.0 HEAD is now at 3e8781a lib: update libmetal to release v2024.10.0 === updating littlefs (modules/fs/littlefs): --- littlefs: initializing Initialized empty Git repository in /home/embo/main_ZMK/modules/fs/littlefs/.git/ --- littlefs: fetching, need revision ed0531d59ee37f5fb2762bcf2fc8ba4efaf82656 remote: Enumerating objects: 4490, done. remote: Counting objects: 100% (523/523), done. remote: Compressing objects: 100% (36/36), done. remote: Total 4490 (delta 495), reused 487 (delta 487), pack-reused 3967 (from 1) Receiving objects: 100% (4490/4490), 2.16 MiB | 2.60 MiB/s, done. Resolving deltas: 100% (3180/3180), done. From https://github.com/zephyrproject-rtos/littlefs * [new branch] zephyr -> refs/west/zephyr * [new tag] littlefs-v2.1.0 -> littlefs-v2.1.0 * [new tag] littlefs-v2.1.1 -> littlefs-v2.1.1 * [new tag] littlefs-v2.1.2 -> littlefs-v2.1.2 * [new tag] littlefs-v2.1.3 -> littlefs-v2.1.3 * [new tag] littlefs-v2.1.4 -> littlefs-v2.1.4 * [new tag] littlefs-v2.2.0 -> littlefs-v2.2.0 HEAD is now at ed0531d Merge pull request #15 from Jappie3/zephyr HEAD is now at ed0531d Merge pull request #15 from Jappie3/zephyr === updating mbedtls (modules/crypto/mbedtls): --- mbedtls: initializing Initialized empty Git repository in /home/embo/main_ZMK/modules/crypto/mbedtls/.git/ --- mbedtls: fetching, need revision 4952e1328529ee549d412b498ea71c54f30aa3b1 remote: Enumerating objects: 222541, done. remote: Counting objects: 100% (15757/15757), done. remote: Compressing objects: 100% (483/483), done. remote: Total 222541 (delta 15405), reused 15274 (delta 15274), pack-reused 206784 (from 3) Receiving objects: 100% (222541/222541), 106.57 MiB | 3.14 MiB/s, done. Resolving deltas: 100% (173566/173566), done. From https://github.com/zephyrproject-rtos/mbedtls * [new branch] lts/2.26 -> refs/west/lts/2.26 * [new branch] lts/2.28 -> refs/west/lts/2.28 * [new branch] master -> refs/west/master * [new branch] mbedtls-2.28 -> refs/west/mbedtls-2.28 * [new branch] zephyr_mbedtls_v3.6.6 -> refs/west/zephyr_mbedtls_v3.6.6 * [new branch] zephyr_mbedtls_v4.1.0 -> refs/west/zephyr_mbedtls_v4.1.0 * [new tag] zephyr_mbedtls_v3.6.4 -> zephyr_mbedtls_v3.6.4 * [new tag] zephyr_mbedtls_v3.6.5 -> zephyr_mbedtls_v3.6.5 * [new tag] zephyr_mbedtls_v4.0.99_a83ab39d82 -> zephyr_mbedtls_v4.0.99_a83ab39d82 HEAD is now at 4952e1328 psa: use static key slot buffers to store key material HEAD is now at 4952e1328 psa: use static key slot buffers to store key material === updating mipi-sys-t (modules/debug/mipi-sys-t): --- mipi-sys-t: initializing Initialized empty Git repository in /home/embo/main_ZMK/modules/debug/mipi-sys-t/.git/ --- mipi-sys-t: fetching, need revision 33e5c23cbedda5ba12dbe50c4baefb362a791001 remote: Enumerating objects: 226, done. remote: Counting objects: 100% (44/44), done. remote: Compressing objects: 100% (36/36), done. remote: Total 226 (delta 21), reused 14 (delta 8), pack-reused 182 (from 1) Receiving objects: 100% (226/226), 447.86 KiB | 1.36 MiB/s, done. Resolving deltas: 100% (76/76), done. From https://github.com/zephyrproject-rtos/mipi-sys-t * [new branch] zephyr -> refs/west/zephyr HEAD is now at 33e5c23 Fix for warning of potential error using = instead of == HEAD is now at 33e5c23 Fix for warning of potential error using = instead of == === updating nrf_hw_models (modules/bsim_hw_models/nrf_hw_models): --- nrf_hw_models: initializing Initialized empty Git repository in /home/embo/main_ZMK/modules/bsim_hw_models/nrf_hw_models/.git/ --- nrf_hw_models: fetching, need revision 73a5d5827a94820be65b7d276d28173ec10bab9f remote: Enumerating objects: 4214, done. remote: Counting objects: 100% (567/567), done. remote: Compressing objects: 100% (275/275), done. remote: Total 4214 (delta 372), reused 435 (delta 290), pack-reused 3647 (from 2) Receiving objects: 100% (4214/4214), 1.67 MiB | 1.64 MiB/s, done. Resolving deltas: 100% (2819/2819), done. From https://github.com/zephyrproject-rtos/nrf_hw_models * [new branch] main -> refs/west/main * [new branch] master -> refs/west/master * [new branch] nrf4.0.0 -> refs/west/nrf4.0.0 * [new branch] nrfx3.x -> refs/west/nrfx3.x * [new branch] zephyr_2025_01_14 -> refs/west/zephyr_2025_01_14 * [new branch] zephyr_2025_01_22 -> refs/west/zephyr_2025_01_22 HEAD is now at 73a5d58 54 CCM: Fix UBSAN reported issue with zero size VLAs HEAD is now at 73a5d58 54 CCM: Fix UBSAN reported issue with zero size VLAs === updating nrf_wifi (modules/lib/nrf_wifi): --- nrf_wifi: initializing Initialized empty Git repository in /home/embo/main_ZMK/modules/lib/nrf_wifi/.git/ --- nrf_wifi: fetching, need revision e35f707a782b7c4c0eb83a3b06ca4e6eb693f29f remote: Enumerating objects: 1787, done. remote: Counting objects: 100% (563/563), done. remote: Compressing objects: 100% (265/265), done. remote: Total 1787 (delta 375), reused 317 (delta 289), pack-reused 1224 (from 2) Receiving objects: 100% (1787/1787), 581.36 KiB | 1.72 MiB/s, done. Resolving deltas: 100% (860/860), done. From https://github.com/zephyrproject-rtos/nrf_wifi * [new branch] fix_deinit_rx_race -> refs/west/fix_deinit_rx_race * [new branch] main -> refs/west/main * [new branch] ncs-v2.9-branch -> refs/west/ncs-v2.9-branch * [new branch] nrf70_bm_branch -> refs/west/nrf70_bm_branch * [new branch] twt_timeout_nrfwifi -> refs/west/twt_timeout_nrfwifi HEAD is now at e35f707 Fix SoftAP mode compilation issues HEAD is now at e35f707 Fix SoftAP mode compilation issues === updating open-amp (modules/lib/open-amp): --- open-amp: initializing Initialized empty Git repository in /home/embo/main_ZMK/modules/lib/open-amp/.git/ --- open-amp: fetching, need revision 52bb1783521c62c019451cee9b05b8eda9d7425f remote: Enumerating objects: 758, done. remote: Counting objects: 100% (196/196), done. remote: Compressing objects: 100% (122/122), done. remote: Total 758 (delta 112), reused 90 (delta 74), pack-reused 562 (from 3) Receiving objects: 100% (758/758), 1.76 MiB | 2.48 MiB/s, done. Resolving deltas: 100% (364/364), done. From https://github.com/zephyrproject-rtos/open-amp * [new branch] bump_v2024.05.0 -> refs/west/bump_v2024.05.0 * [new branch] main -> refs/west/main * [new branch] v1.14-branch -> refs/west/v1.14-branch * [new tag] old_master -> old_master HEAD is now at 52bb178 lib: update open-amp lib to release v2024.10.0 HEAD is now at 52bb178 lib: update open-amp lib to release v2024.10.0 === updating percepio (modules/debug/percepio): --- percepio: initializing Initialized empty Git repository in /home/embo/main_ZMK/modules/debug/percepio/.git/ --- percepio: fetching, need revision 49e6dc202aa38c2a3edbafcc2dab85dec6aee973 remote: Enumerating objects: 3397, done. remote: Counting objects: 100% (263/263), done. remote: Compressing objects: 100% (177/177), done. remote: Total 3397 (delta 68), reused 139 (delta 45), pack-reused 3134 (from 1) Receiving objects: 100% (3397/3397), 1.05 MiB | 1.63 MiB/s, done. Resolving deltas: 100% (1974/1974), done. From https://github.com/zephyrproject-rtos/percepio * [new branch] main -> refs/west/main * [new branch] main_zephyr -> refs/west/main_zephyr * [new branch] zephyr -> refs/west/zephyr * [new branch] zephyr_v4_10_2_hotfix1 -> refs/west/zephyr_v4_10_2_hotfix1 HEAD is now at 49e6dc2 Merge branch 'main' into zephyr HEAD is now at 49e6dc2 Merge branch 'main' into zephyr === updating picolibc (modules/lib/picolibc): --- picolibc: initializing Initialized empty Git repository in /home/embo/main_ZMK/modules/lib/picolibc/.git/ --- picolibc: fetching, need revision 82d62ed1ac55b4e34a12d0390aced2dc9af13fc9 remote: Enumerating objects: 249539, done. remote: Total 249539 (delta 0), reused 0 (delta 0), pack-reused 249539 (from 1) Receiving objects: 100% (249539/249539), 132.21 MiB | 3.11 MiB/s, done. Resolving deltas: 100% (202105/202105), done. From https://github.com/zephyrproject-rtos/picolibc * [new branch] Z-emcb-cygwin_daemon -> refs/west/Z-emcb-cygwin_daemon * [new branch] aarch64 -> refs/west/aarch64 * [new branch] add-fakeroots-dir -> refs/west/add-fakeroots-dir * [new branch] amd64_to_x86_64 -> refs/west/amd64_to_x86_64 * [new branch] ancient-clang -> refs/west/ancient-clang * [new branch] arc-20081103-branch -> refs/west/arc-20081103-branch * [new branch] arc-insight_6_8-branch -> refs/west/arc-insight_6_8-branch * [new branch] arc-strchr -> refs/west/arc-strchr * [new branch] arm-read-tp-cleanup -> refs/west/arm-read-tp-cleanup * [new branch] binutils-2_10-branch -> refs/west/binutils-2_10-branch * [new branch] binutils-2_11-branch -> refs/west/binutils-2_11-branch * [new branch] binutils-2_12-branch -> refs/west/binutils-2_12-branch * [new branch] binutils-2_13-branch -> refs/west/binutils-2_13-branch * [new branch] binutils-2_14-branch -> refs/west/binutils-2_14-branch * [new branch] binutils-2_15-branch -> refs/west/binutils-2_15-branch * [new branch] binutils-2_16-branch -> refs/west/binutils-2_16-branch * [new branch] binutils-2_17-branch -> refs/west/binutils-2_17-branch * [new branch] binutils-2_18-branch -> refs/west/binutils-2_18-branch * [new branch] binutils-2_19-branch -> refs/west/binutils-2_19-branch * [new branch] binutils-2_20-branch -> refs/west/binutils-2_20-branch * [new branch] binutils-2_21-branch -> refs/west/binutils-2_21-branch * [new branch] binutils-2_22-branch -> refs/west/binutils-2_22-branch * [new branch] binutils-2_22_branch -> refs/west/binutils-2_22_branch * [new branch] binutils-2_23-branch -> refs/west/binutils-2_23-branch * [new branch] binutils-2_24-branch -> refs/west/binutils-2_24-branch * [new branch] binutils-arc-20080908-branch -> refs/west/binutils-arc-20080908-branch * [new branch] binutils-arc-20081103-branch -> refs/west/binutils-arc-20081103-branch * [new branch] binutils-csl-2_17-branch -> refs/west/binutils-csl-2_17-branch * [new branch] binutils-csl-arm-2005q1-branch -> refs/west/binutils-csl-arm-2005q1-branch * [new branch] binutils-csl-gxxpro-3_4-branch -> refs/west/binutils-csl-gxxpro-3_4-branch * [new branch] branch-1.4.6 -> refs/west/branch-1.4.6 * [new branch] branch-1.8.4 -> refs/west/branch-1.8.4 * [new branch] c++11-fix -> refs/west/c++11-fix * [new branch] c-sky -> refs/west/c-sky * [new branch] cagney-unwind-20030108-branch -> refs/west/cagney-unwind-20030108-branch * [new branch] cagney_bfdfile-20040213-branch -> refs/west/cagney_bfdfile-20040213-branch * [new branch] cagney_bigcore-20040122-branch -> refs/west/cagney_bigcore-20040122-branch * [new branch] cagney_convert-20030606-branch -> refs/west/cagney_convert-20030606-branch * [new branch] cagney_fileio-20030521-branch -> refs/west/cagney_fileio-20030521-branch * [new branch] cagney_frameaddr-20030403-branch -> refs/west/cagney_frameaddr-20030403-branch * [new branch] cagney_framebase-20030326-branch -> refs/west/cagney_framebase-20030326-branch * [new branch] cagney_lazyid-20030317-branch -> refs/west/cagney_lazyid-20030317-branch * [new branch] cagney_offbyone-20030303-branch -> refs/west/cagney_offbyone-20030303-branch * [new branch] cagney_regbuf-20020515-branch -> refs/west/cagney_regbuf-20020515-branch * [new branch] cagney_sysregs-20020825-branch -> refs/west/cagney_sysregs-20020825-branch * [new branch] cagney_tramp-20040309-branch -> refs/west/cagney_tramp-20040309-branch * [new branch] cagney_writestrings-20030508-branch -> refs/west/cagney_writestrings-20030508-branch * [new branch] cagney_x86i386-20030821-branch -> refs/west/cagney_x86i386-20030821-branch * [new branch] callout -> refs/west/callout * [new branch] carlton_dictionary-branch -> refs/west/carlton_dictionary-branch * [new branch] cgen-1_1-branch -> refs/west/cgen-1_1-branch * [new branch] cgf-deleteme -> refs/west/cgf-deleteme * [new branch] cgf-dev-branch -> refs/west/cgf-dev-branch * [new branch] cmake -> refs/west/cmake * [new branch] cmake-no-tls -> refs/west/cmake-no-tls * [new branch] cmake-small-ultoa -> refs/west/cmake-small-ultoa * [new branch] cmake-wcsftime -> refs/west/cmake-wcsftime * [new branch] cr-0x3b58 -> refs/west/cr-0x3b58 * [new branch] cr-0x5e6 -> refs/west/cr-0x5e6 * [new branch] cr-0x5ef -> refs/west/cr-0x5ef * [new branch] cr-0x5f1 -> refs/west/cr-0x5f1 * [new branch] cr-0x9b -> refs/west/cr-0x9b * [new branch] cr-0x9c -> refs/west/cr-0x9c * [new branch] cr-0x9d -> refs/west/cr-0x9d * [new branch] cr-0x9e -> refs/west/cr-0x9e * [new branch] csl-arm-20050325-branch -> refs/west/csl-arm-20050325-branch * [new branch] cv-branch -> refs/west/cv-branch * [new branch] cv-branch-2 -> refs/west/cv-branch-2 * [new branch] cv-post-1_7_9 -> refs/west/cv-post-1_7_9 * [new branch] cygnus -> refs/west/cygnus * [new branch] cygwin-1-1-4 -> refs/west/cygwin-1-1-4 * [new branch] cygwin-1-3-1 -> refs/west/cygwin-1-3-1 * [new branch] cygwin-1-3-10-1 -> refs/west/cygwin-1-3-10-1 * [new branch] cygwin-1-3-11-3 -> refs/west/cygwin-1-3-11-3 * [new branch] cygwin-1-3-12-1 -> refs/west/cygwin-1-3-12-1 * [new branch] cygwin-1-3-13-1 -> refs/west/cygwin-1-3-13-1 * [new branch] cygwin-1-3-13-2 -> refs/west/cygwin-1-3-13-2 * [new branch] cygwin-1-3-14-1 -> refs/west/cygwin-1-3-14-1 * [new branch] cygwin-1-3-15-1 -> refs/west/cygwin-1-3-15-1 * [new branch] cygwin-1-3-16-1 -> refs/west/cygwin-1-3-16-1 * [new branch] cygwin-1-3-17-1 -> refs/west/cygwin-1-3-17-1 * [new branch] cygwin-1-3-18-1 -> refs/west/cygwin-1-3-18-1 * [new branch] cygwin-1-3-19-1 -> refs/west/cygwin-1-3-19-1 * [new branch] cygwin-1-3-2 -> refs/west/cygwin-1-3-2 * [new branch] cygwin-1-3-3 -> refs/west/cygwin-1-3-3 * [new branch] cygwin-1-3-4 -> refs/west/cygwin-1-3-4 * [new branch] cygwin-1-3-5 -> refs/west/cygwin-1-3-5 * [new branch] cygwin-1-3-5-2 -> refs/west/cygwin-1-3-5-2 * [new branch] cygwin-1-3-5-3 -> refs/west/cygwin-1-3-5-3 * [new branch] cygwin-1-3-6-1 -> refs/west/cygwin-1-3-6-1 * [new branch] cygwin-1-3-6-2 -> refs/west/cygwin-1-3-6-2 * [new branch] cygwin-1-3-6-3 -> refs/west/cygwin-1-3-6-3 * [new branch] cygwin-1-3-6-4 -> refs/west/cygwin-1-3-6-4 * [new branch] cygwin-1-3-6-5 -> refs/west/cygwin-1-3-6-5 * [new branch] cygwin-1-3-6-6 -> refs/west/cygwin-1-3-6-6 * [new branch] cygwin-1-3-7-1 -> refs/west/cygwin-1-3-7-1 * [new branch] cygwin-1-3-8-1 -> refs/west/cygwin-1-3-8-1 * [new branch] cygwin-1-3-9 -> refs/west/cygwin-1-3-9 * [new branch] cygwin-1_7_29-release-branchpoint -> refs/west/cygwin-1_7_29-release-branchpoint * [new branch] cygwin-2.0 -> refs/west/cygwin-2.0 * [new branch] cygwin-3_0-branch -> refs/west/cygwin-3_0-branch * [new branch] cygwin-64bit-branch -> refs/west/cygwin-64bit-branch * [new branch] cygwin-64bit-premerge-branch -> refs/west/cygwin-64bit-premerge-branch * [new branch] cygwin-acl -> refs/west/cygwin-acl * [new branch] cygwin_daemon -> refs/west/cygwin_daemon * [new branch] debian -> refs/west/debian * [new branch] dje-cgen-play1-branch -> refs/west/dje-cgen-play1-branch * [new branch] docker-builder-packages.txt-hash -> refs/west/docker-builder-packages.txt-hash * [new branch] drow-cplus-branch -> refs/west/drow-cplus-branch * [new branch] drow-reverse-20070409-branch -> refs/west/drow-reverse-20070409-branch * [new branch] drow_intercu-20040221-branch -> refs/west/drow_intercu-20040221-branch * [new branch] ezannoni_pie-20030916-branch -> refs/west/ezannoni_pie-20030916-branch * [new branch] ezannoni_pie-20040323-branch -> refs/west/ezannoni_pie-20040323-branch * [new branch] fifo_doover3 -> refs/west/fifo_doover3 * [new branch] fix-c++-x86-longjmp -> refs/west/fix-c++-x86-longjmp * [new branch] fixes-newlib -> refs/west/fixes-newlib * [new branch] float-inlines -> refs/west/float-inlines * [new branch] fp-zeuch -> refs/west/fp-zeuch * [new branch] gcc-startfile-path -> refs/west/gcc-startfile-path * [new branch] gdb-csl-20060226-branch -> refs/west/gdb-csl-20060226-branch * [new branch] gdb-csl-arm-20051020-branch -> refs/west/gdb-csl-arm-20051020-branch * [new branch] gdb-csl-available-20060303-branch -> refs/west/gdb-csl-available-20060303-branch * [new branch] gdb-csl-gxxpro-6_3-branch -> refs/west/gdb-csl-gxxpro-6_3-branch * [new branch] gdb-csl-symbian-20060226-branch -> refs/west/gdb-csl-symbian-20060226-branch * [new branch] gdb-premipsmulti-2000-06-06-branch -> refs/west/gdb-premipsmulti-2000-06-06-branch * [new branch] gdb_5_0-2000-04-10-branch -> refs/west/gdb_5_0-2000-04-10-branch * [new branch] gdb_5_1-2001-07-29-branch -> refs/west/gdb_5_1-2001-07-29-branch * [new branch] gdb_5_1_0_1-2002-01-03-branch -> refs/west/gdb_5_1_0_1-2002-01-03-branch * [new branch] gdb_5_2-branch -> refs/west/gdb_5_2-branch * [new branch] gdb_5_3-branch -> refs/west/gdb_5_3-branch * [new branch] gdb_6_0-branch -> refs/west/gdb_6_0-branch * [new branch] gdb_6_1-branch -> refs/west/gdb_6_1-branch * [new branch] gdb_6_2-branch -> refs/west/gdb_6_2-branch * [new branch] gdb_6_3-branch -> refs/west/gdb_6_3-branch * [new branch] gdb_6_4-branch -> refs/west/gdb_6_4-branch * [new branch] gdb_6_5-branch -> refs/west/gdb_6_5-branch * [new branch] gdb_6_6-branch -> refs/west/gdb_6_6-branch * [new branch] gdb_6_7-branch -> refs/west/gdb_6_7-branch * [new branch] gdb_6_8-branch -> refs/west/gdb_6_8-branch * [new branch] gdb_7_0-branch -> refs/west/gdb_7_0-branch * [new branch] gdb_7_1-branch -> refs/west/gdb_7_1-branch * [new branch] gdb_7_2-branch -> refs/west/gdb_7_2-branch * [new branch] gdb_7_3-branch -> refs/west/gdb_7_3-branch * [new branch] gdb_7_4-branch -> refs/west/gdb_7_4-branch * [new branch] gdb_7_5-branch -> refs/west/gdb_7_5-branch * [new branch] gdb_7_6-branch -> refs/west/gdb_7_6-branch * [new branch] gdb_s390-2001-09-26-branch -> refs/west/gdb_s390-2001-09-26-branch * [new branch] gh -> refs/west/gh * [new branch] insight_6_8-branch -> refs/west/insight_6_8-branch * [new branch] interps-20030202-branch -> refs/west/interps-20030202-branch * [new branch] isblank-extern-inline -> refs/west/isblank-extern-inline * [new branch] jimb-gdb_6_2-e500-branch -> refs/west/jimb-gdb_6_2-e500-branch * [new branch] jimb-macro-020506-branch -> refs/west/jimb-macro-020506-branch * [new branch] jimb-ppc64-linux-20030509-branch -> refs/west/jimb-ppc64-linux-20030509-branch * [new branch] jimb-ppc64-linux-20030528-branch -> refs/west/jimb-ppc64-linux-20030528-branch * [new branch] jimb-ppc64-linux-20030613-branch -> refs/west/jimb-ppc64-linux-20030613-branch * [new branch] jimb-rda-nptl-branch -> refs/west/jimb-rda-nptl-branch * [new branch] kettenis-i386newframe-20030308-branch -> refs/west/kettenis-i386newframe-20030308-branch * [new branch] kettenis_i386newframe-20030406-branch -> refs/west/kettenis_i386newframe-20030406-branch * [new branch] kettenis_i386newframe-20030419-branch -> refs/west/kettenis_i386newframe-20030419-branch * [new branch] kettenis_sparc-20030918-branch -> refs/west/kettenis_sparc-20030918-branch * [new branch] kseitz_interps-20020528-branch -> refs/west/kseitz_interps-20020528-branch * [new branch] locking-docs -> refs/west/locking-docs * [new branch] main -> refs/west/main * [new branch] mingw-std-ns-branch -> refs/west/mingw-std-ns-branch * [new branch] mingwex -> refs/west/mingwex * [new branch] msnyder-checkpoint-072509-branch -> refs/west/msnyder-checkpoint-072509-branch * [new branch] msnyder-fork-checkpoint-branch -> refs/west/msnyder-fork-checkpoint-branch * [new branch] msnyder-reverse-20060331-branch -> refs/west/msnyder-reverse-20060331-branch * [new branch] msnyder-reverse-20060502-branch -> refs/west/msnyder-reverse-20060502-branch * [new branch] msnyder-reverse-20080609-branch -> refs/west/msnyder-reverse-20080609-branch * [new branch] msnyder-tracepoint-checkpoint-branch -> refs/west/msnyder-tracepoint-checkpoint-branch * [new branch] msp430 -> refs/west/msp430 * [new branch] multiprocess-20081120-branch -> refs/west/multiprocess-20081120-branch * [new branch] newlib -> refs/west/newlib * [new branch] newlib-1_17_0-arc -> refs/west/newlib-1_17_0-arc * [new branch] newlib-autotools-branch -> refs/west/newlib-autotools-branch * [new branch] newlib-csl-20060320-branch -> refs/west/newlib-csl-20060320-branch * [new branch] nickrob-async-20060513-branch -> refs/west/nickrob-async-20060513-branch * [new branch] non-linux-ln -> refs/west/non-linux-ln * [new branch] noreparent -> refs/west/noreparent * [new branch] offbyone-20030313-branch -> refs/west/offbyone-20030313-branch * [new branch] posix-limits -> refs/west/posix-limits * [new branch] pre-regex -> refs/west/pre-regex * [new branch] pregp02r1 -> refs/west/pregp02r1 * [new branch] proposed-for-0.18 -> refs/west/proposed-for-0.18 * [new branch] proposed-zephyr-4.2 -> refs/west/proposed-zephyr-4.2 * [new branch] readline_4_3-import-branch -> refs/west/readline_4_3-import-branch * [new branch] readline_5_1-import-branch -> refs/west/readline_5_1-import-branch * [new branch] reverse-20080717-branch -> refs/west/reverse-20080717-branch * [new branch] reverse-20080930-branch -> refs/west/reverse-20080930-branch * [new branch] reverse-20081226-branch -> refs/west/reverse-20081226-branch * [new branch] revert-zephyr-linker-fix -> refs/west/revert-zephyr-linker-fix * [new branch] riscv-zicsr -> refs/west/riscv-zicsr * [new branch] semihost-2.0-all -> refs/west/semihost-2.0-all * [new branch] sid-20020905-branch -> refs/west/sid-20020905-branch * [new branch] signal-rewrite -> refs/west/signal-rewrite * [new branch] sysroot-skip-checks -> refs/west/sysroot-skip-checks * [new branch] tcltk840-20020924-branch -> refs/west/tcltk840-20020924-branch * [new branch] tls -> refs/west/tls * [new branch] topic-zephyr-3.7 -> refs/west/topic-zephyr-3.7 * [new branch] topic/af_unix -> refs/west/topic/af_unix * [new branch] topic/ansification -> refs/west/topic/ansification * [new branch] topic/fifo -> refs/west/topic/fifo * [new branch] topic/forkables -> refs/west/topic/forkables * [new branch] topic/locales -> refs/west/topic/locales * [new branch] topic/posix_acl_funcs -> refs/west/topic/posix_acl_funcs * [new branch] topic/ssp -> refs/west/topic/ssp * [new branch] undo-specs-prefix-patch -> refs/west/undo-specs-prefix-patch * [new branch] unlabeled-1.1.1.1.2 -> refs/west/unlabeled-1.1.1.1.2 * [new branch] unlabeled-1.100.2 -> refs/west/unlabeled-1.100.2 * [new branch] unlabeled-1.1010.2 -> refs/west/unlabeled-1.1010.2 * [new branch] unlabeled-1.1019.2 -> refs/west/unlabeled-1.1019.2 * [new branch] unlabeled-1.1042.2 -> refs/west/unlabeled-1.1042.2 * [new branch] unlabeled-1.1042.2.1.4 -> refs/west/unlabeled-1.1042.2.1.4 * [new branch] unlabeled-1.1042.2.1.4.2.4 -> refs/west/unlabeled-1.1042.2.1.4.2.4 * [new branch] unlabeled-1.1042.2.1.4.2.4.2.2 -> refs/west/unlabeled-1.1042.2.1.4.2.4.2.2 * [new branch] unlabeled-1.105.2 -> refs/west/unlabeled-1.105.2 * [new branch] unlabeled-1.106.2 -> refs/west/unlabeled-1.106.2 * [new branch] unlabeled-1.106.8 -> refs/west/unlabeled-1.106.8 * [new branch] unlabeled-1.107.12 -> refs/west/unlabeled-1.107.12 * [new branch] unlabeled-1.11.2 -> refs/west/unlabeled-1.11.2 * [new branch] unlabeled-1.112.4 -> refs/west/unlabeled-1.112.4 * [new branch] unlabeled-1.116.4 -> refs/west/unlabeled-1.116.4 * [new branch] unlabeled-1.12.20 -> refs/west/unlabeled-1.12.20 * [new branch] unlabeled-1.12.30 -> refs/west/unlabeled-1.12.30 * [new branch] unlabeled-1.12.4 -> refs/west/unlabeled-1.12.4 * [new branch] unlabeled-1.120.2 -> refs/west/unlabeled-1.120.2 * [new branch] unlabeled-1.125.2 -> refs/west/unlabeled-1.125.2 * [new branch] unlabeled-1.13.10 -> refs/west/unlabeled-1.13.10 * [new branch] unlabeled-1.13.2 -> refs/west/unlabeled-1.13.2 * [new branch] unlabeled-1.13.30 -> refs/west/unlabeled-1.13.30 * [new branch] unlabeled-1.13.4 -> refs/west/unlabeled-1.13.4 * [new branch] unlabeled-1.133.2 -> refs/west/unlabeled-1.133.2 * [new branch] unlabeled-1.134.4 -> refs/west/unlabeled-1.134.4 * [new branch] unlabeled-1.135.4 -> refs/west/unlabeled-1.135.4 * [new branch] unlabeled-1.1370.2 -> refs/west/unlabeled-1.1370.2 * [new branch] unlabeled-1.142.2 -> refs/west/unlabeled-1.142.2 * [new branch] unlabeled-1.143.4 -> refs/west/unlabeled-1.143.4 * [new branch] unlabeled-1.144.2 -> refs/west/unlabeled-1.144.2 * [new branch] unlabeled-1.15.10 -> refs/west/unlabeled-1.15.10 * [new branch] unlabeled-1.15.2 -> refs/west/unlabeled-1.15.2 * [new branch] unlabeled-1.1527.4 -> refs/west/unlabeled-1.1527.4 * [new branch] unlabeled-1.153.2 -> refs/west/unlabeled-1.153.2 * [new branch] unlabeled-1.1563.2 -> refs/west/unlabeled-1.1563.2 * [new branch] unlabeled-1.1656.2 -> refs/west/unlabeled-1.1656.2 * [new branch] unlabeled-1.167.4 -> refs/west/unlabeled-1.167.4 * [new branch] unlabeled-1.17.2 -> refs/west/unlabeled-1.17.2 * [new branch] unlabeled-1.17.4 -> refs/west/unlabeled-1.17.4 * [new branch] unlabeled-1.1710.2 -> refs/west/unlabeled-1.1710.2 * [new branch] unlabeled-1.172.4 -> refs/west/unlabeled-1.172.4 * [new branch] unlabeled-1.18.10 -> refs/west/unlabeled-1.18.10 * [new branch] unlabeled-1.18.2 -> refs/west/unlabeled-1.18.2 * [new branch] unlabeled-1.1806.2 -> refs/west/unlabeled-1.1806.2 * [new branch] unlabeled-1.1856.2 -> refs/west/unlabeled-1.1856.2 * [new branch] unlabeled-1.188.2 -> refs/west/unlabeled-1.188.2 * [new branch] unlabeled-1.188.2.1.8 -> refs/west/unlabeled-1.188.2.1.8 * [new branch] unlabeled-1.188.2.1.8.2.2 -> refs/west/unlabeled-1.188.2.1.8.2.2 * [new branch] unlabeled-1.19.12 -> refs/west/unlabeled-1.19.12 * [new branch] unlabeled-1.2.2 -> refs/west/unlabeled-1.2.2 * [new branch] unlabeled-1.20.4 -> refs/west/unlabeled-1.20.4 * [new branch] unlabeled-1.21.2 -> refs/west/unlabeled-1.21.2 * [new branch] unlabeled-1.21.4 -> refs/west/unlabeled-1.21.4 * [new branch] unlabeled-1.22.2 -> refs/west/unlabeled-1.22.2 * [new branch] unlabeled-1.22.4 -> refs/west/unlabeled-1.22.4 * [new branch] unlabeled-1.226.2 -> refs/west/unlabeled-1.226.2 * [new branch] unlabeled-1.23.16 -> refs/west/unlabeled-1.23.16 * [new branch] unlabeled-1.23.2 -> refs/west/unlabeled-1.23.2 * [new branch] unlabeled-1.23.4 -> refs/west/unlabeled-1.23.4 * [new branch] unlabeled-1.231.4 -> refs/west/unlabeled-1.231.4 * [new branch] unlabeled-1.234.16 -> refs/west/unlabeled-1.234.16 * [new branch] unlabeled-1.235.2 -> refs/west/unlabeled-1.235.2 * [new branch] unlabeled-1.238.4 -> refs/west/unlabeled-1.238.4 * [new branch] unlabeled-1.24.16 -> refs/west/unlabeled-1.24.16 * [new branch] unlabeled-1.24.2 -> refs/west/unlabeled-1.24.2 * [new branch] unlabeled-1.24.4 -> refs/west/unlabeled-1.24.4 * [new branch] unlabeled-1.248.2 -> refs/west/unlabeled-1.248.2 * [new branch] unlabeled-1.253.2 -> refs/west/unlabeled-1.253.2 * [new branch] unlabeled-1.27.12 -> refs/west/unlabeled-1.27.12 * [new branch] unlabeled-1.27.8 -> refs/west/unlabeled-1.27.8 * [new branch] unlabeled-1.30.4 -> refs/west/unlabeled-1.30.4 * [new branch] unlabeled-1.31.4 -> refs/west/unlabeled-1.31.4 * [new branch] unlabeled-1.32.16 -> refs/west/unlabeled-1.32.16 * [new branch] unlabeled-1.32.2 -> refs/west/unlabeled-1.32.2 * [new branch] unlabeled-1.35.12 -> refs/west/unlabeled-1.35.12 * [new branch] unlabeled-1.38.4 -> refs/west/unlabeled-1.38.4 * [new branch] unlabeled-1.39.2 -> refs/west/unlabeled-1.39.2 * [new branch] unlabeled-1.44.2 -> refs/west/unlabeled-1.44.2 * [new branch] unlabeled-1.44.4 -> refs/west/unlabeled-1.44.4 * [new branch] unlabeled-1.45.2 -> refs/west/unlabeled-1.45.2 * [new branch] unlabeled-1.45.8 -> refs/west/unlabeled-1.45.8 * [new branch] unlabeled-1.46.4 -> refs/west/unlabeled-1.46.4 * [new branch] unlabeled-1.48.16 -> refs/west/unlabeled-1.48.16 * [new branch] unlabeled-1.5.16 -> refs/west/unlabeled-1.5.16 * [new branch] unlabeled-1.5.2 -> refs/west/unlabeled-1.5.2 * [new branch] unlabeled-1.50.2 -> refs/west/unlabeled-1.50.2 * [new branch] unlabeled-1.50.6 -> refs/west/unlabeled-1.50.6 * [new branch] unlabeled-1.52.2 -> refs/west/unlabeled-1.52.2 * [new branch] unlabeled-1.53.6 -> refs/west/unlabeled-1.53.6 * [new branch] unlabeled-1.54.4 -> refs/west/unlabeled-1.54.4 * [new branch] unlabeled-1.64.2 -> refs/west/unlabeled-1.64.2 * [new branch] unlabeled-1.65.12 -> refs/west/unlabeled-1.65.12 * [new branch] unlabeled-1.65.4 -> refs/west/unlabeled-1.65.4 * [new branch] unlabeled-1.66.2 -> refs/west/unlabeled-1.66.2 * [new branch] unlabeled-1.69.4 -> refs/west/unlabeled-1.69.4 * [new branch] unlabeled-1.74.4 -> refs/west/unlabeled-1.74.4 * [new branch] unlabeled-1.75.4 -> refs/west/unlabeled-1.75.4 * [new branch] unlabeled-1.8.2 -> refs/west/unlabeled-1.8.2 * [new branch] unlabeled-1.81.2 -> refs/west/unlabeled-1.81.2 * [new branch] unlabeled-1.83.4 -> refs/west/unlabeled-1.83.4 * [new branch] unlabeled-1.86.2 -> refs/west/unlabeled-1.86.2 * [new branch] unlabeled-1.88.2 -> refs/west/unlabeled-1.88.2 * [new branch] unlabeled-1.90.2 -> refs/west/unlabeled-1.90.2 * [new branch] unlabeled-1.90.2.1.4 -> refs/west/unlabeled-1.90.2.1.4 * [new branch] unlabeled-1.93.2 -> refs/west/unlabeled-1.93.2 * [new branch] vendor -> refs/west/vendor * [new branch] x86-more-32 -> refs/west/x86-more-32 * [new branch] zephyr-1.8.10 -> refs/west/zephyr-1.8.10 * [new branch] zephyr-4.2 -> refs/west/zephyr-4.2 * [new branch] zephyr-add-library -> refs/west/zephyr-add-library * [new branch] zephyr-deprecated -> refs/west/zephyr-deprecated * [new branch] zephyr-hacks -> refs/west/zephyr-hacks * [new branch] zephyr-no-lto -> refs/west/zephyr-no-lto * [new branch] zephyr-no-posix-define -> refs/west/zephyr-no-posix-define * [new branch] zephyr-posix -> refs/west/zephyr-posix * [new branch] zephyr-sdk-0.17 -> refs/west/zephyr-sdk-0.17 * [new branch] zephyr-sdk-v0.17-branch -> refs/west/zephyr-sdk-v0.17-branch * [new branch] zephyr-source -> refs/west/zephyr-source * [new tag] 1.0 -> 1.0 * [new tag] 1.0-1 -> 1.0-1 * [new tag] 1.1 -> 1.1 * [new tag] 1.1-1 -> 1.1-1 * [new tag] 1.1-2 -> 1.1-2 * [new tag] 1.1.1 -> 1.1.1 * [new tag] 1.1.1-1 -> 1.1.1-1 * [new tag] 1.2 -> 1.2 * [new tag] 1.2-1 -> 1.2-1 * [new tag] 1.2.1 -> 1.2.1 * [new tag] 1.2.1-1 -> 1.2.1-1 * [new tag] 1.3 -> 1.3 * [new tag] 1.3-1 -> 1.3-1 * [new tag] 1.4 -> 1.4 * [new tag] 1.4-1 -> 1.4-1 * [new tag] 1.4.1 -> 1.4.1 * [new tag] 1.4.1-1 -> 1.4.1-1 * [new tag] 1.4.1-2 -> 1.4.1-2 * [new tag] 1.4.2 -> 1.4.2 * [new tag] 1.4.2-1 -> 1.4.2-1 * [new tag] 1.4.2-2 -> 1.4.2-2 * [new tag] 1.4.2-3 -> 1.4.2-3 * [new tag] 1.4.3 -> 1.4.3 * [new tag] 1.4.3-1 -> 1.4.3-1 * [new tag] 1.4.4 -> 1.4.4 * [new tag] 1.4.4-1 -> 1.4.4-1 * [new tag] 1.4.5 -> 1.4.5 * [new tag] 1.4.5-1 -> 1.4.5-1 * [new tag] 1.4.6 -> 1.4.6 * [new tag] 1.4.6-1 -> 1.4.6-1 * [new tag] 1.4.7 -> 1.4.7 * [new tag] 1.4.7-1 -> 1.4.7-1 * [new tag] 1.4.7-2 -> 1.4.7-2 * [new tag] 1.5 -> 1.5 * [new tag] 1.5-1 -> 1.5-1 * [new tag] 1.5.1 -> 1.5.1 * [new tag] 1.5.1-1 -> 1.5.1-1 * [new tag] 1.5.1-2 -> 1.5.1-2 * [new tag] 1.6 -> 1.6 * [new tag] 1.6-1 -> 1.6-1 * [new tag] 1.6.1 -> 1.6.1 * [new tag] 1.6.1-1 -> 1.6.1-1 * [new tag] 1.6.2 -> 1.6.2 * [new tag] 1.6.2-1 -> 1.6.2-1 * [new tag] 1.7 -> 1.7 * [new tag] 1.7-1 -> 1.7-1 * [new tag] 1.7.1 -> 1.7.1 * [new tag] 1.7.1-1 -> 1.7.1-1 * [new tag] 1.7.2 -> 1.7.2 * [new tag] 1.7.2-1 -> 1.7.2-1 * [new tag] 1.7.2-2 -> 1.7.2-2 * [new tag] 1.7.3 -> 1.7.3 * [new tag] 1.7.3-1 -> 1.7.3-1 * [new tag] 1.7.3-2 -> 1.7.3-2 * [new tag] 1.7.4 -> 1.7.4 * [new tag] 1.7.4-1 -> 1.7.4-1 * [new tag] 1.7.5 -> 1.7.5 * [new tag] 1.7.5-1 -> 1.7.5-1 * [new tag] 1.7.6 -> 1.7.6 * [new tag] 1.7.6-1 -> 1.7.6-1 * [new tag] 1.7.8 -> 1.7.8 * [new tag] 1.7.9 -> 1.7.9 * [new tag] 1.8.1 -> 1.8.1 * [new tag] 1.8.2 -> 1.8.2 * [new tag] 1.8.2-1 -> 1.8.2-1 * [new tag] 1.8.4 -> 1.8.4 * [new tag] 1.8.6 -> 1.8.6 * [new tag] 1.8.7 -> 1.8.7 * [new tag] 1.8.8 -> 1.8.8 * [new tag] 1.8.9 -> 1.8.9 * [new tag] 3.1.0.2019.08.08 -> 3.1.0.2019.08.08 * [new tag] 3.1.0.2019.08.08-1 -> 3.1.0.2019.08.08-1 * [new tag] 3.1.0.2019.08.14 -> 3.1.0.2019.08.14 * [new tag] 3.1.0.2019.08.14-1 -> 3.1.0.2019.08.14-1 * [new tag] EOL_registry_mounts -> EOL_registry_mounts * [new tag] Z-cygwin_daemon_merge-new_HEAD -> Z-cygwin_daemon_merge-new_HEAD * [new tag] Z-cygwin_daemon_merge_HEAD -> Z-cygwin_daemon_merge_HEAD * [new tag] after-mmap-privanon-noreserve -> after-mmap-privanon-noreserve * [new tag] after-mmap-revamp -> after-mmap-revamp * [new tag] arc-20081103-branchpoint -> arc-20081103-branchpoint * [new tag] arc-insight_6_8-branchpoint -> arc-insight_6_8-branchpoint * [new tag] arc-sim-20090309 -> arc-sim-20090309 * [new tag] before-mmap-revamp -> before-mmap-revamp * [new tag] binu_ss_19990502 -> binu_ss_19990502 * [new tag] binu_ss_19990602 -> binu_ss_19990602 * [new tag] binu_ss_19990721 -> binu_ss_19990721 * [new tag] binutils-2_10 -> binutils-2_10 * [new tag] binutils-2_10-branchpoint -> binutils-2_10-branchpoint * [new tag] binutils-2_10_1 -> binutils-2_10_1 * [new tag] binutils-2_11 -> binutils-2_11 * [new tag] binutils-2_11_1 -> binutils-2_11_1 * [new tag] binutils-2_11_2 -> binutils-2_11_2 * [new tag] binutils-2_12 -> binutils-2_12 * [new tag] binutils-2_12-branchpoint -> binutils-2_12-branchpoint * [new tag] binutils-2_12_1 -> binutils-2_12_1 * [new tag] binutils-2_13 -> binutils-2_13 * [new tag] binutils-2_13-branchpoint -> binutils-2_13-branchpoint * [new tag] binutils-2_13_1 -> binutils-2_13_1 * [new tag] binutils-2_13_2 -> binutils-2_13_2 * [new tag] binutils-2_13_2_1 -> binutils-2_13_2_1 * [new tag] binutils-2_14 -> binutils-2_14 * [new tag] binutils-2_14-branchpoint -> binutils-2_14-branchpoint * [new tag] binutils-2_15 -> binutils-2_15 * [new tag] binutils-2_15-branchpoint -> binutils-2_15-branchpoint * [new tag] binutils-2_16 -> binutils-2_16 * [new tag] binutils-2_16-branchpoint -> binutils-2_16-branchpoint * [new tag] binutils-2_16_1 -> binutils-2_16_1 * [new tag] binutils-2_17 -> binutils-2_17 * [new tag] binutils-2_17-branchpoint -> binutils-2_17-branchpoint * [new tag] binutils-2_18 -> binutils-2_18 * [new tag] binutils-2_18-branchpoint -> binutils-2_18-branchpoint * [new tag] binutils-2_19 -> binutils-2_19 * [new tag] binutils-2_19-branchpoint -> binutils-2_19-branchpoint * [new tag] binutils-2_19_1 -> binutils-2_19_1 * [new tag] binutils-2_20 -> binutils-2_20 * [new tag] binutils-2_20-branchpoint -> binutils-2_20-branchpoint * [new tag] binutils-2_20_1 -> binutils-2_20_1 * [new tag] binutils-2_21 -> binutils-2_21 * [new tag] binutils-2_21-branchpoint -> binutils-2_21-branchpoint * [new tag] binutils-2_21_1 -> binutils-2_21_1 * [new tag] binutils-2_22 -> binutils-2_22 * [new tag] binutils-2_22-branchpoint -> binutils-2_22-branchpoint * [new tag] binutils-2_23 -> binutils-2_23 * [new tag] binutils-2_23-branchpoint -> binutils-2_23-branchpoint * [new tag] binutils-2_23_1 -> binutils-2_23_1 * [new tag] binutils-2_23_2 -> binutils-2_23_2 * [new tag] binutils-2_24-branchpoint -> binutils-2_24-branchpoint * [new tag] binutils-arc-20080908-branchpoint -> binutils-arc-20080908-branchpoint * [new tag] binutils-arc-20081103-branchpoint -> binutils-arc-20081103-branchpoint * [new tag] binutils-csl-2_17-branchpoint -> binutils-csl-2_17-branchpoint * [new tag] binutils-csl-arm-2005q1-branchpoint -> binutils-csl-arm-2005q1-branchpoint * [new tag] binutils-csl-arm-2005q1a -> binutils-csl-arm-2005q1a * [new tag] binutils-csl-arm-2005q1b -> binutils-csl-arm-2005q1b * [new tag] binutils-csl-arm-2006q1-6 -> binutils-csl-arm-2006q1-6 * [new tag] binutils-csl-arm-2006q3-19 -> binutils-csl-arm-2006q3-19 * [new tag] binutils-csl-arm-2006q3-21 -> binutils-csl-arm-2006q3-21 * [new tag] binutils-csl-arm-2006q3-26 -> binutils-csl-arm-2006q3-26 * [new tag] binutils-csl-arm-2006q3-27 -> binutils-csl-arm-2006q3-27 * [new tag] binutils-csl-coldfire-4_1-10 -> binutils-csl-coldfire-4_1-10 * [new tag] binutils-csl-coldfire-4_1-11 -> binutils-csl-coldfire-4_1-11 * [new tag] binutils-csl-coldfire-4_1-28 -> binutils-csl-coldfire-4_1-28 * [new tag] binutils-csl-coldfire-4_1-30 -> binutils-csl-coldfire-4_1-30 * [new tag] binutils-csl-coldfire-4_1-32 -> binutils-csl-coldfire-4_1-32 * [new tag] binutils-csl-gxxpro-3_4-branchpoint -> binutils-csl-gxxpro-3_4-branchpoint * [new tag] binutils-csl-innovasic-fido-3_4_4-33 -> binutils-csl-innovasic-fido-3_4_4-33 * [new tag] binutils-csl-morpho-4_1-4 -> binutils-csl-morpho-4_1-4 * [new tag] binutils-csl-palmsource-arm-prelinker-1_0-1 -> binutils-csl-palmsource-arm-prelinker-1_0-1 * [new tag] binutils-csl-renesas-4_1-6 -> binutils-csl-renesas-4_1-6 * [new tag] binutils-csl-renesas-4_1-7 -> binutils-csl-renesas-4_1-7 * [new tag] binutils-csl-renesas-4_1-8 -> binutils-csl-renesas-4_1-8 * [new tag] binutils-csl-renesas-4_1-9 -> binutils-csl-renesas-4_1-9 * [new tag] binutils-csl-sourcerygxx-3_4_4-17 -> binutils-csl-sourcerygxx-3_4_4-17 * [new tag] binutils-csl-sourcerygxx-3_4_4-19 -> binutils-csl-sourcerygxx-3_4_4-19 * [new tag] binutils-csl-sourcerygxx-3_4_4-21 -> binutils-csl-sourcerygxx-3_4_4-21 * [new tag] binutils-csl-sourcerygxx-3_4_4-25 -> binutils-csl-sourcerygxx-3_4_4-25 * [new tag] binutils-csl-sourcerygxx-3_4_4-32 -> binutils-csl-sourcerygxx-3_4_4-32 * [new tag] binutils-csl-sourcerygxx-4_1-12 -> binutils-csl-sourcerygxx-4_1-12 * [new tag] binutils-csl-sourcerygxx-4_1-13 -> binutils-csl-sourcerygxx-4_1-13 * [new tag] binutils-csl-sourcerygxx-4_1-14 -> binutils-csl-sourcerygxx-4_1-14 * [new tag] binutils-csl-sourcerygxx-4_1-15 -> binutils-csl-sourcerygxx-4_1-15 * [new tag] binutils-csl-sourcerygxx-4_1-17 -> binutils-csl-sourcerygxx-4_1-17 * [new tag] binutils-csl-sourcerygxx-4_1-18 -> binutils-csl-sourcerygxx-4_1-18 * [new tag] binutils-csl-sourcerygxx-4_1-19 -> binutils-csl-sourcerygxx-4_1-19 * [new tag] binutils-csl-sourcerygxx-4_1-20 -> binutils-csl-sourcerygxx-4_1-20 * [new tag] binutils-csl-sourcerygxx-4_1-21 -> binutils-csl-sourcerygxx-4_1-21 * [new tag] binutils-csl-sourcerygxx-4_1-22 -> binutils-csl-sourcerygxx-4_1-22 * [new tag] binutils-csl-sourcerygxx-4_1-23 -> binutils-csl-sourcerygxx-4_1-23 * [new tag] binutils-csl-sourcerygxx-4_1-24 -> binutils-csl-sourcerygxx-4_1-24 * [new tag] binutils-csl-sourcerygxx-4_1-25 -> binutils-csl-sourcerygxx-4_1-25 * [new tag] binutils-csl-sourcerygxx-4_1-26 -> binutils-csl-sourcerygxx-4_1-26 * [new tag] binutils-csl-sourcerygxx-4_1-27 -> binutils-csl-sourcerygxx-4_1-27 * [new tag] binutils-csl-sourcerygxx-4_1-28 -> binutils-csl-sourcerygxx-4_1-28 * [new tag] binutils-csl-sourcerygxx-4_1-29 -> binutils-csl-sourcerygxx-4_1-29 * [new tag] binutils-csl-sourcerygxx-4_1-30 -> binutils-csl-sourcerygxx-4_1-30 * [new tag] binutils-csl-sourcerygxx-4_1-32 -> binutils-csl-sourcerygxx-4_1-32 * [new tag] binutils-csl-sourcerygxx-4_1-4 -> binutils-csl-sourcerygxx-4_1-4 * [new tag] binutils-csl-sourcerygxx-4_1-5 -> binutils-csl-sourcerygxx-4_1-5 * [new tag] binutils-csl-sourcerygxx-4_1-6 -> binutils-csl-sourcerygxx-4_1-6 * [new tag] binutils-csl-sourcerygxx-4_1-7 -> binutils-csl-sourcerygxx-4_1-7 * [new tag] binutils-csl-sourcerygxx-4_1-8 -> binutils-csl-sourcerygxx-4_1-8 * [new tag] binutils-csl-sourcerygxx-4_1-9 -> binutils-csl-sourcerygxx-4_1-9 * [new tag] binutils-csl-wrs-linux-3_4_4-20 -> binutils-csl-wrs-linux-3_4_4-20 * [new tag] binutils-csl-wrs-linux-3_4_4-21 -> binutils-csl-wrs-linux-3_4_4-21 * [new tag] binutils-csl-wrs-linux-3_4_4-22 -> binutils-csl-wrs-linux-3_4_4-22 * [new tag] binutils-csl-wrs-linux-3_4_4-23 -> binutils-csl-wrs-linux-3_4_4-23 * [new tag] binutils-csl-wrs-linux-3_4_4-24 -> binutils-csl-wrs-linux-3_4_4-24 * [new tag] binutils_latest_snapshot -> binutils_latest_snapshot * [new tag] cagney-unwind-20030108-branchpoint -> cagney-unwind-20030108-branchpoint * [new tag] cagney_bfdfile-20040213-branchpoint -> cagney_bfdfile-20040213-branchpoint * [new tag] cagney_bigcore-20040122-branchpoint -> cagney_bigcore-20040122-branchpoint * [new tag] cagney_convert-20030606-branchpoint -> cagney_convert-20030606-branchpoint * [new tag] cagney_fileio-20030521-branchpoint -> cagney_fileio-20030521-branchpoint * [new tag] cagney_frameaddr-20030403-branchpoint -> cagney_frameaddr-20030403-branchpoint * [new tag] cagney_frameaddr-20030409-mergepoint -> cagney_frameaddr-20030409-mergepoint * [new tag] cagney_framebase-20030326-branchpoint -> cagney_framebase-20030326-branchpoint * [new tag] cagney_framebase-20030330-mergepoint -> cagney_framebase-20030330-mergepoint * [new tag] cagney_lazyid-20030317-branchpoint -> cagney_lazyid-20030317-branchpoint * [new tag] cagney_offbyone-20030303-branchpoint -> cagney_offbyone-20030303-branchpoint * [new tag] cagney_regbuf-20020515-branchpoint -> cagney_regbuf-20020515-branchpoint * [new tag] cagney_sysregs-20020825-branchpoint -> cagney_sysregs-20020825-branchpoint * [new tag] cagney_tramp-20040309-branchpoint -> cagney_tramp-20040309-branchpoint * [new tag] cagney_tramp-20040321-mergepoint -> cagney_tramp-20040321-mergepoint * [new tag] cagney_writestrings-20030508-branchpoint -> cagney_writestrings-20030508-branchpoint * [new tag] cagney_x86i386-20030821-branchpoint -> cagney_x86i386-20030821-branchpoint * [new tag] carlton-dictionary-20031111-merge -> carlton-dictionary-20031111-merge * [new tag] carlton_dictionary-20020920-branchpoint -> carlton_dictionary-20020920-branchpoint * [new tag] carlton_dictionary-20020927-merge -> carlton_dictionary-20020927-merge * [new tag] carlton_dictionary-20021011-merge -> carlton_dictionary-20021011-merge * [new tag] carlton_dictionary-20021025-merge -> carlton_dictionary-20021025-merge * [new tag] carlton_dictionary-20021115-merge -> carlton_dictionary-20021115-merge * [new tag] carlton_dictionary-20021223-merge -> carlton_dictionary-20021223-merge * [new tag] carlton_dictionary-20030207-merge -> carlton_dictionary-20030207-merge * [new tag] carlton_dictionary-20030305-merge -> carlton_dictionary-20030305-merge * [new tag] carlton_dictionary-20030416-merge -> carlton_dictionary-20030416-merge * [new tag] carlton_dictionary-20030430-merge -> carlton_dictionary-20030430-merge * [new tag] carlton_dictionary-20030523-merge -> carlton_dictionary-20030523-merge * [new tag] carlton_dictionary-20030627-merge -> carlton_dictionary-20030627-merge * [new tag] carlton_dictionary-20030805-merge -> carlton_dictionary-20030805-merge * [new tag] carlton_dictionary-20030917-merge -> carlton_dictionary-20030917-merge * [new tag] carlton_dictionary-20031215-merge -> carlton_dictionary-20031215-merge * [new tag] carlton_dictionary-20040126-merge -> carlton_dictionary-20040126-merge * [new tag] cgen-1_1-branchpoint -> cgen-1_1-branchpoint * [new tag] cgen-snapshot-20071001 -> cgen-snapshot-20071001 * [new tag] cgen-snapshot-20071101 -> cgen-snapshot-20071101 * [new tag] cgen-snapshot-20071201 -> cgen-snapshot-20071201 * [new tag] cgen-snapshot-20080101 -> cgen-snapshot-20080101 * [new tag] cgen-snapshot-20080201 -> cgen-snapshot-20080201 * [new tag] cgen-snapshot-20080301 -> cgen-snapshot-20080301 * [new tag] cgen-snapshot-20080401 -> cgen-snapshot-20080401 * [new tag] cgen-snapshot-20080501 -> cgen-snapshot-20080501 * [new tag] cgen-snapshot-20080601 -> cgen-snapshot-20080601 * [new tag] cgen-snapshot-20080701 -> cgen-snapshot-20080701 * [new tag] cgen-snapshot-20080801 -> cgen-snapshot-20080801 * [new tag] cgen-snapshot-20080901 -> cgen-snapshot-20080901 * [new tag] cgen-snapshot-20081001 -> cgen-snapshot-20081001 * [new tag] cgen-snapshot-20081101 -> cgen-snapshot-20081101 * [new tag] cgen-snapshot-20081201 -> cgen-snapshot-20081201 * [new tag] cgen-snapshot-20090101 -> cgen-snapshot-20090101 * [new tag] cgen-snapshot-20090201 -> cgen-snapshot-20090201 * [new tag] cgen-snapshot-20090301 -> cgen-snapshot-20090301 * [new tag] cgen-snapshot-20090401 -> cgen-snapshot-20090401 * [new tag] cgen-snapshot-20090501 -> cgen-snapshot-20090501 * [new tag] cgen-snapshot-20090601 -> cgen-snapshot-20090601 * [new tag] cgen-snapshot-20090701 -> cgen-snapshot-20090701 * [new tag] cgen-snapshot-20090801 -> cgen-snapshot-20090801 * [new tag] cgen-snapshot-20090901 -> cgen-snapshot-20090901 * [new tag] cgen-snapshot-20091001 -> cgen-snapshot-20091001 * [new tag] cgen-snapshot-20091101 -> cgen-snapshot-20091101 * [new tag] cgen-snapshot-20091201 -> cgen-snapshot-20091201 * [new tag] cgen-snapshot-20100101 -> cgen-snapshot-20100101 * [new tag] cgen-snapshot-20100201 -> cgen-snapshot-20100201 * [new tag] cgen-snapshot-20100301 -> cgen-snapshot-20100301 * [new tag] cgen-snapshot-20100401 -> cgen-snapshot-20100401 * [new tag] cgen-snapshot-20100501 -> cgen-snapshot-20100501 * [new tag] cgen-snapshot-20100601 -> cgen-snapshot-20100601 * [new tag] cgen-snapshot-20100701 -> cgen-snapshot-20100701 * [new tag] cgen-snapshot-20100801 -> cgen-snapshot-20100801 * [new tag] cgen-snapshot-20100901 -> cgen-snapshot-20100901 * [new tag] cgen-snapshot-20101001 -> cgen-snapshot-20101001 * [new tag] cgen-snapshot-20101101 -> cgen-snapshot-20101101 * [new tag] cgen-snapshot-20101201 -> cgen-snapshot-20101201 * [new tag] cgen-snapshot-20110101 -> cgen-snapshot-20110101 * [new tag] cgen-snapshot-20110201 -> cgen-snapshot-20110201 * [new tag] cgen-snapshot-20110301 -> cgen-snapshot-20110301 * [new tag] cgen-snapshot-20110401 -> cgen-snapshot-20110401 * [new tag] cgen-snapshot-20110501 -> cgen-snapshot-20110501 * [new tag] cgen-snapshot-20110601 -> cgen-snapshot-20110601 * [new tag] cgen-snapshot-20110701 -> cgen-snapshot-20110701 * [new tag] cgen-snapshot-20110801 -> cgen-snapshot-20110801 * [new tag] cgen-snapshot-20110901 -> cgen-snapshot-20110901 * [new tag] cgen-snapshot-20111001 -> cgen-snapshot-20111001 * [new tag] cgen-snapshot-20111101 -> cgen-snapshot-20111101 * [new tag] cgen-snapshot-20111201 -> cgen-snapshot-20111201 * [new tag] cgen-snapshot-20120101 -> cgen-snapshot-20120101 * [new tag] cgen-snapshot-20120201 -> cgen-snapshot-20120201 * [new tag] cgen-snapshot-20120301 -> cgen-snapshot-20120301 * [new tag] cgen-snapshot-20120401 -> cgen-snapshot-20120401 * [new tag] cgen-snapshot-20120501 -> cgen-snapshot-20120501 * [new tag] cgen-snapshot-20120601 -> cgen-snapshot-20120601 * [new tag] cgen-snapshot-20120701 -> cgen-snapshot-20120701 * [new tag] cgen-snapshot-20120801 -> cgen-snapshot-20120801 * [new tag] cgen-snapshot-20120901 -> cgen-snapshot-20120901 * [new tag] cgen-snapshot-20121001 -> cgen-snapshot-20121001 * [new tag] cgen-snapshot-20121101 -> cgen-snapshot-20121101 * [new tag] cgen-snapshot-20121201 -> cgen-snapshot-20121201 * [new tag] cgen-snapshot-20130101 -> cgen-snapshot-20130101 * [new tag] cgen-snapshot-20130201 -> cgen-snapshot-20130201 * [new tag] cgen-snapshot-20130301 -> cgen-snapshot-20130301 * [new tag] cgen-snapshot-20130401 -> cgen-snapshot-20130401 * [new tag] cgen-snapshot-20130501 -> cgen-snapshot-20130501 * [new tag] cgen-snapshot-20130601 -> cgen-snapshot-20130601 * [new tag] cgen-snapshot-20130701 -> cgen-snapshot-20130701 * [new tag] cgen-snapshot-20130801 -> cgen-snapshot-20130801 * [new tag] cgen-snapshot-20130901 -> cgen-snapshot-20130901 * [new tag] cgen-snapshot-20131001 -> cgen-snapshot-20131001 * [new tag] cgen-snapshot-20131101 -> cgen-snapshot-20131101 * [new tag] cgen-snapshot-20131201 -> cgen-snapshot-20131201 * [new tag] cgen-snapshot-20140101 -> cgen-snapshot-20140101 * [new tag] cgen-snapshot-20140201 -> cgen-snapshot-20140201 * [new tag] cgen-snapshot-20140301 -> cgen-snapshot-20140301 * [new tag] cgen-snapshot-20140401 -> cgen-snapshot-20140401 * [new tag] cgen-snapshot-20140501 -> cgen-snapshot-20140501 * [new tag] cgen-snapshot-20140601 -> cgen-snapshot-20140601 * [new tag] cgen-snapshot-20140701 -> cgen-snapshot-20140701 * [new tag] cgen-snapshot-20140801 -> cgen-snapshot-20140801 * [new tag] cgen-snapshot-20140901 -> cgen-snapshot-20140901 * [new tag] cgen-snapshot-20141001 -> cgen-snapshot-20141001 * [new tag] cgen-snapshot-20141101 -> cgen-snapshot-20141101 * [new tag] cgen-snapshot-20141201 -> cgen-snapshot-20141201 * [new tag] cgen-snapshot-20150101 -> cgen-snapshot-20150101 * [new tag] cgen-snapshot-20150201 -> cgen-snapshot-20150201 * [new tag] cgen-snapshot-20150301 -> cgen-snapshot-20150301 * [new tag] cgf-more-exit-sync -> cgf-more-exit-sync * [new tag] corinna-01 -> corinna-01 * [new tag] cr-0x99 -> cr-0x99 * [new tag] csl-arm-2003-q4 -> csl-arm-2003-q4 * [new tag] csl-arm-2004-q1 -> csl-arm-2004-q1 * [new tag] csl-arm-2004-q1a -> csl-arm-2004-q1a * [new tag] csl-arm-2004-q3 -> csl-arm-2004-q3 * [new tag] csl-arm-2004-q3d -> csl-arm-2004-q3d * [new tag] csl-arm-20050325-branchpoint -> csl-arm-20050325-branchpoint * [new tag] cygnus_cvs_20020108_pre -> cygnus_cvs_20020108_pre * [new tag] cygwin-1-1-5 -> cygwin-1-1-5 * [new tag] cygwin-1-1-6 -> cygwin-1-1-6 * [new tag] cygwin-1-1-7 -> cygwin-1-1-7 * [new tag] cygwin-1-1-8 -> cygwin-1-1-8 * [new tag] cygwin-1-3-19-1-branchpoint -> cygwin-1-3-19-1-branchpoint * [new tag] cygwin-1_1_1 -> cygwin-1_1_1 * [new tag] cygwin-1_7_1-release -> cygwin-1_7_1-release * [new tag] cygwin-1_7_10-release -> cygwin-1_7_10-release * [new tag] cygwin-1_7_11-release -> cygwin-1_7_11-release * [new tag] cygwin-1_7_12-release -> cygwin-1_7_12-release * [new tag] cygwin-1_7_14-release -> cygwin-1_7_14-release * [new tag] cygwin-1_7_14_2-release -> cygwin-1_7_14_2-release * [new tag] cygwin-1_7_15-release -> cygwin-1_7_15-release * [new tag] cygwin-1_7_16-release -> cygwin-1_7_16-release * [new tag] cygwin-1_7_17-release -> cygwin-1_7_17-release * [new tag] cygwin-1_7_18-release -> cygwin-1_7_18-release * [new tag] cygwin-1_7_19-release -> cygwin-1_7_19-release * [new tag] cygwin-1_7_2-release -> cygwin-1_7_2-release * [new tag] cygwin-1_7_20-release -> cygwin-1_7_20-release * [new tag] cygwin-1_7_21-release -> cygwin-1_7_21-release * [new tag] cygwin-1_7_22-release -> cygwin-1_7_22-release * [new tag] cygwin-1_7_23-release -> cygwin-1_7_23-release * [new tag] cygwin-1_7_24-release -> cygwin-1_7_24-release * [new tag] cygwin-1_7_25-release -> cygwin-1_7_25-release * [new tag] cygwin-1_7_26-release -> cygwin-1_7_26-release * [new tag] cygwin-1_7_27-release -> cygwin-1_7_27-release * [new tag] cygwin-1_7_28-release -> cygwin-1_7_28-release * [new tag] cygwin-1_7_29-release -> cygwin-1_7_29-release * [new tag] cygwin-1_7_3-release -> cygwin-1_7_3-release * [new tag] cygwin-1_7_30-release -> cygwin-1_7_30-release * [new tag] cygwin-1_7_31-release -> cygwin-1_7_31-release * [new tag] cygwin-1_7_32-release -> cygwin-1_7_32-release * [new tag] cygwin-1_7_33-release -> cygwin-1_7_33-release * [new tag] cygwin-1_7_34-release -> cygwin-1_7_34-release * [new tag] cygwin-1_7_35-release -> cygwin-1_7_35-release * [new tag] cygwin-1_7_4-release -> cygwin-1_7_4-release * [new tag] cygwin-1_7_5-release -> cygwin-1_7_5-release * [new tag] cygwin-1_7_7-release -> cygwin-1_7_7-release * [new tag] cygwin-1_7_8-release -> cygwin-1_7_8-release * [new tag] cygwin-1_7_9-release -> cygwin-1_7_9-release * [new tag] cygwin-2_0_0-release -> cygwin-2_0_0-release * [new tag] cygwin-2_0_1-release -> cygwin-2_0_1-release * [new tag] cygwin-2_0_2-release -> cygwin-2_0_2-release * [new tag] cygwin-2_0_3-release -> cygwin-2_0_3-release * [new tag] cygwin-2_0_4-release -> cygwin-2_0_4-release * [new tag] cygwin-2_10_0-release -> cygwin-2_10_0-release * [new tag] cygwin-2_11_0-release -> cygwin-2_11_0-release * [new tag] cygwin-2_11_1-release -> cygwin-2_11_1-release * [new tag] cygwin-2_11_2-release -> cygwin-2_11_2-release * [new tag] cygwin-2_1_0-release -> cygwin-2_1_0-release * [new tag] cygwin-2_2_0-release -> cygwin-2_2_0-release * [new tag] cygwin-2_2_1-release -> cygwin-2_2_1-release * [new tag] cygwin-2_3_0-release -> cygwin-2_3_0-release * [new tag] cygwin-2_3_1-relase -> cygwin-2_3_1-relase * [new tag] cygwin-2_3_1-release -> cygwin-2_3_1-release * [new tag] cygwin-2_4_0-release -> cygwin-2_4_0-release * [new tag] cygwin-2_4_1-release -> cygwin-2_4_1-release * [new tag] cygwin-2_5_0-release -> cygwin-2_5_0-release * [new tag] cygwin-2_5_1-release -> cygwin-2_5_1-release * [new tag] cygwin-2_5_2-release -> cygwin-2_5_2-release * [new tag] cygwin-2_6_0-release -> cygwin-2_6_0-release * [new tag] cygwin-2_6_1-release -> cygwin-2_6_1-release * [new tag] cygwin-2_7_0-release -> cygwin-2_7_0-release * [new tag] cygwin-2_8_0-release -> cygwin-2_8_0-release * [new tag] cygwin-2_8_1-release -> cygwin-2_8_1-release * [new tag] cygwin-2_8_2-release -> cygwin-2_8_2-release * [new tag] cygwin-2_9_0-release -> cygwin-2_9_0-release * [new tag] cygwin-3_0_0-release -> cygwin-3_0_0-release * [new tag] cygwin-3_0_1-release -> cygwin-3_0_1-release * [new tag] cygwin-3_0_2-release -> cygwin-3_0_2-release * [new tag] cygwin-3_0_3-release -> cygwin-3_0_3-release * [new tag] cygwin-3_0_4-release -> cygwin-3_0_4-release * [new tag] cygwin-3_0_5-release -> cygwin-3_0_5-release * [new tag] cygwin-3_0_6-release -> cygwin-3_0_6-release * [new tag] cygwin-3_0_7-release -> cygwin-3_0_7-release * [new tag] cygwin-3_1_0-release -> cygwin-3_1_0-release * [new tag] cygwin-3_1_1-release -> cygwin-3_1_1-release * [new tag] cygwin-3_1_2-release -> cygwin-3_1_2-release * [new tag] cygwin-3_1_3-release -> cygwin-3_1_3-release * [new tag] cygwin-3_1_4-release -> cygwin-3_1_4-release * [new tag] cygwin-64bit-postmerge -> cygwin-64bit-postmerge * [new tag] cygwin-64bit-premerge -> cygwin-64bit-premerge * [new tag] cygwin-pre-user-db -> cygwin-pre-user-db * [new tag] cygwin_daemon_merge_HEAD -> cygwin_daemon_merge_HEAD * [new tag] debian-2.10.0-1 -> debian-2.10.0-1 * [new tag] dje-cgen-play1-branchpoint -> dje-cgen-play1-branchpoint * [new tag] drop_9x_support_start -> drop_9x_support_start * [new tag] drow-cplus-branchpoint -> drow-cplus-branchpoint * [new tag] drow-cplus-merge-20021020 -> drow-cplus-merge-20021020 * [new tag] drow-cplus-merge-20021025 -> drow-cplus-merge-20021025 * [new tag] drow-cplus-merge-20031214 -> drow-cplus-merge-20031214 * [new tag] drow-cplus-merge-20031220 -> drow-cplus-merge-20031220 * [new tag] drow-cplus-merge-20031224 -> drow-cplus-merge-20031224 * [new tag] drow-cplus-merge-20040113 -> drow-cplus-merge-20040113 * [new tag] drow-cplus-merge-20040208 -> drow-cplus-merge-20040208 * [new tag] drow-reverse-20070409-branchpoint -> drow-reverse-20070409-branchpoint * [new tag] drow_intercu-20040221-branchpoint -> drow_intercu-20040221-branchpoint * [new tag] drow_intercu-merge-20040327 -> drow_intercu-merge-20040327 * [new tag] drow_intercu-merge-20040402 -> drow_intercu-merge-20040402 * [new tag] drow_intercu-merge-20040915 -> drow_intercu-merge-20040915 * [new tag] drow_intercu-merge-20040921 -> drow_intercu-merge-20040921 * [new tag] egcs_20000222 -> egcs_20000222 * [new tag] ezannoni_pie-20030916-branchpoint -> ezannoni_pie-20030916-branchpoint * [new tag] ezannoni_pie-20040323-branchpoint -> ezannoni_pie-20040323-branchpoint * [new tag] gdb-csl-20060226-branch-local-2 -> gdb-csl-20060226-branch-local-2 * [new tag] gdb-csl-20060226-branch-merge-to-csl-local-1 -> gdb-csl-20060226-branch-merge-to-csl-local-1 * [new tag] gdb-csl-20060226-branch-merge-to-csl-symbian-1 -> gdb-csl-20060226-branch-merge-to-csl-symbian-1 * [new tag] gdb-csl-20060226-branchpoint -> gdb-csl-20060226-branchpoint * [new tag] gdb-csl-arm-20050325-2005-q1a -> gdb-csl-arm-20050325-2005-q1a * [new tag] gdb-csl-arm-20050325-2005-q1b -> gdb-csl-arm-20050325-2005-q1b * [new tag] gdb-csl-arm-20051020-branchpoint -> gdb-csl-arm-20051020-branchpoint * [new tag] gdb-csl-arm-2006q1-6 -> gdb-csl-arm-2006q1-6 * [new tag] gdb-csl-available-20060303-branchpoint -> gdb-csl-available-20060303-branchpoint * [new tag] gdb-csl-coldfire-4_1-10 -> gdb-csl-coldfire-4_1-10 * [new tag] gdb-csl-coldfire-4_1-11 -> gdb-csl-coldfire-4_1-11 * [new tag] gdb-csl-gxxpro-6_3-branchpoint -> gdb-csl-gxxpro-6_3-branchpoint * [new tag] gdb-csl-morpho-4_1-4 -> gdb-csl-morpho-4_1-4 * [new tag] gdb-csl-sourcerygxx-3_4_4-17 -> gdb-csl-sourcerygxx-3_4_4-17 * [new tag] gdb-csl-sourcerygxx-3_4_4-19 -> gdb-csl-sourcerygxx-3_4_4-19 * [new tag] gdb-csl-sourcerygxx-3_4_4-21 -> gdb-csl-sourcerygxx-3_4_4-21 * [new tag] gdb-csl-sourcerygxx-3_4_4-25 -> gdb-csl-sourcerygxx-3_4_4-25 * [new tag] gdb-csl-sourcerygxx-4_1-12 -> gdb-csl-sourcerygxx-4_1-12 * [new tag] gdb-csl-sourcerygxx-4_1-13 -> gdb-csl-sourcerygxx-4_1-13 * [new tag] gdb-csl-sourcerygxx-4_1-14 -> gdb-csl-sourcerygxx-4_1-14 * [new tag] gdb-csl-sourcerygxx-4_1-17 -> gdb-csl-sourcerygxx-4_1-17 * [new tag] gdb-csl-sourcerygxx-4_1-4 -> gdb-csl-sourcerygxx-4_1-4 * [new tag] gdb-csl-sourcerygxx-4_1-5 -> gdb-csl-sourcerygxx-4_1-5 * [new tag] gdb-csl-sourcerygxx-4_1-6 -> gdb-csl-sourcerygxx-4_1-6 * [new tag] gdb-csl-sourcerygxx-4_1-7 -> gdb-csl-sourcerygxx-4_1-7 * [new tag] gdb-csl-sourcerygxx-4_1-8 -> gdb-csl-sourcerygxx-4_1-8 * [new tag] gdb-csl-sourcerygxx-4_1-9 -> gdb-csl-sourcerygxx-4_1-9 * [new tag] gdb-csl-symbian-20060226-branchpoint -> gdb-csl-symbian-20060226-branchpoint * [new tag] gdb-csl-symbian-6_4_50_20060226-10 -> gdb-csl-symbian-6_4_50_20060226-10 * [new tag] gdb-csl-symbian-6_4_50_20060226-11 -> gdb-csl-symbian-6_4_50_20060226-11 * [new tag] gdb-csl-symbian-6_4_50_20060226-12 -> gdb-csl-symbian-6_4_50_20060226-12 * [new tag] gdb-csl-symbian-6_4_50_20060226-8 -> gdb-csl-symbian-6_4_50_20060226-8 * [new tag] gdb-csl-symbian-6_4_50_20060226-9 -> gdb-csl-symbian-6_4_50_20060226-9 * [new tag] gdb-premipsmulti-2000-06-06-branchpoint -> gdb-premipsmulti-2000-06-06-branchpoint * [new tag] gdb_4_18_2-2000-05-18-release -> gdb_4_18_2-2000-05-18-release * [new tag] gdb_4_95_0-2000-04-27-snapshot -> gdb_4_95_0-2000-04-27-snapshot * [new tag] gdb_4_95_1-2000-05-11-snapshot -> gdb_4_95_1-2000-05-11-snapshot * [new tag] gdb_5_0-2000-04-10-branchpoint -> gdb_5_0-2000-04-10-branchpoint * [new tag] gdb_5_0-2000-05-19-release -> gdb_5_0-2000-05-19-release * [new tag] gdb_5_1-2001-07-29-branchpoint -> gdb_5_1-2001-07-29-branchpoint * [new tag] gdb_5_1-2001-11-21-release -> gdb_5_1-2001-11-21-release * [new tag] gdb_5_1_0_1-2002-01-03-branchpoint -> gdb_5_1_0_1-2002-01-03-branchpoint * [new tag] gdb_5_1_0_1-2002-01-03-release -> gdb_5_1_0_1-2002-01-03-release * [new tag] gdb_5_1_1-2002-01-24-release -> gdb_5_1_1-2002-01-24-release * [new tag] gdb_5_2-2002-03-03-branchpoint -> gdb_5_2-2002-03-03-branchpoint * [new tag] gdb_5_2-2002-04-29-release -> gdb_5_2-2002-04-29-release * [new tag] gdb_5_2_1-2002-07-23-release -> gdb_5_2_1-2002-07-23-release * [new tag] gdb_5_3-2002-09-04-branchpoint -> gdb_5_3-2002-09-04-branchpoint * [new tag] gdb_5_3-2002-12-12-release -> gdb_5_3-2002-12-12-release * [new tag] gdb_6_0-2003-06-23-branchpoint -> gdb_6_0-2003-06-23-branchpoint * [new tag] gdb_6_0-2003-10-04-release -> gdb_6_0-2003-10-04-release * [new tag] gdb_6_1-2004-03-01-gmt-branchpoint -> gdb_6_1-2004-03-01-gmt-branchpoint * [new tag] gdb_6_1-2004-04-05-release -> gdb_6_1-2004-04-05-release * [new tag] gdb_6_1_1-20040616-release -> gdb_6_1_1-20040616-release * [new tag] gdb_6_2-2004-07-10-gmt-branchpoint -> gdb_6_2-2004-07-10-gmt-branchpoint * [new tag] gdb_6_2-20040730-release -> gdb_6_2-20040730-release * [new tag] gdb_6_3-20041019-branchpoint -> gdb_6_3-20041019-branchpoint * [new tag] gdb_6_3-20041109-release -> gdb_6_3-20041109-release * [new tag] gdb_6_4-2005-11-01-branchpoint -> gdb_6_4-2005-11-01-branchpoint * [new tag] gdb_6_4-20051202-release -> gdb_6_4-20051202-release * [new tag] gdb_6_5-2006-05-14-branchpoint -> gdb_6_5-2006-05-14-branchpoint * [new tag] gdb_6_5-20060621-release -> gdb_6_5-20060621-release * [new tag] gdb_6_6-2006-11-15-branchpoint -> gdb_6_6-2006-11-15-branchpoint * [new tag] gdb_6_6-2006-12-18-release -> gdb_6_6-2006-12-18-release * [new tag] gdb_6_7-2007-09-07-branchpoint -> gdb_6_7-2007-09-07-branchpoint * [new tag] gdb_6_7-2007-10-10-release -> gdb_6_7-2007-10-10-release * [new tag] gdb_6_7_1-2007-10-29-release -> gdb_6_7_1-2007-10-29-release * [new tag] gdb_6_8-2008-02-26-branchpoint -> gdb_6_8-2008-02-26-branchpoint * [new tag] gdb_6_8-2008-03-27-release -> gdb_6_8-2008-03-27-release * [new tag] gdb_7_0-2009-09-16-branchpoint -> gdb_7_0-2009-09-16-branchpoint * [new tag] gdb_7_0-2009-10-06-release -> gdb_7_0-2009-10-06-release * [new tag] gdb_7_0_1-2009-12-22-release -> gdb_7_0_1-2009-12-22-release * [new tag] gdb_7_1-2010-02-18-branchpoint -> gdb_7_1-2010-02-18-branchpoint * [new tag] gdb_7_1-2010-03-18-release -> gdb_7_1-2010-03-18-release * [new tag] gdb_7_2-2010-07-07-branchpoint -> gdb_7_2-2010-07-07-branchpoint * [new tag] gdb_7_2-2010-09-02-release -> gdb_7_2-2010-09-02-release * [new tag] gdb_7_3-2011-04-01-branchpoint -> gdb_7_3-2011-04-01-branchpoint * [new tag] gdb_7_3-2011-07-26-release -> gdb_7_3-2011-07-26-release * [new tag] gdb_7_3_1-2011-09-04-release -> gdb_7_3_1-2011-09-04-release * [new tag] gdb_7_4-2011-12-13-branchpoint -> gdb_7_4-2011-12-13-branchpoint * [new tag] gdb_7_4-2012-01-24-release -> gdb_7_4-2012-01-24-release * [new tag] gdb_7_4_1-2012-04-26-release -> gdb_7_4_1-2012-04-26-release * [new tag] gdb_7_5-2012-07-18-branchpoint -> gdb_7_5-2012-07-18-branchpoint * [new tag] gdb_7_5-2012-08-17-release -> gdb_7_5-2012-08-17-release * [new tag] gdb_7_5_1-2012-11-29-release -> gdb_7_5_1-2012-11-29-release * [new tag] gdb_7_6-2013-03-12-branchpoint -> gdb_7_6-2013-03-12-branchpoint * [new tag] gdb_7_6-2013-04-26-release -> gdb_7_6-2013-04-26-release * [new tag] gdb_7_6_1-2013-08-30-release -> gdb_7_6_1-2013-08-30-release * [new tag] gdb_s390-2001-09-26-branchpoint -> gdb_s390-2001-09-26-branchpoint * [new tag] hmm -> hmm * [new tag] insight-precleanup-2001-01-01 -> insight-precleanup-2001-01-01 * [new tag] insight_6_5-20061003-release -> insight_6_5-20061003-release * [new tag] insight_6_6-20070208-release -> insight_6_6-20070208-release * [new tag] insight_6_8-branchpoint -> insight_6_8-branchpoint * [new tag] interps-20030202-branchpoint -> interps-20030202-branchpoint * [new tag] jimb-gdb_6_2-e500-branchpoint -> jimb-gdb_6_2-e500-branchpoint * [new tag] jimb-macro-020506-branchpoint -> jimb-macro-020506-branchpoint * [new tag] jimb-ppc64-linux-20030509-branchpoint -> jimb-ppc64-linux-20030509-branchpoint * [new tag] jimb-ppc64-linux-20030528-branchpoint -> jimb-ppc64-linux-20030528-branchpoint * [new tag] jimb-ppc64-linux-20030613-branchpoint -> jimb-ppc64-linux-20030613-branchpoint * [new tag] jimb-rda-nptl-branchpoint -> jimb-rda-nptl-branchpoint * [new tag] kettenis-i386newframe-20030308-branchpoint -> kettenis-i386newframe-20030308-branchpoint * [new tag] kettenis-i386newframe-20030316-mergepoint -> kettenis-i386newframe-20030316-mergepoint * [new tag] kettenis_i386newframe-20030406-branchpoint -> kettenis_i386newframe-20030406-branchpoint * [new tag] kettenis_i386newframe-20030419-branchpoint -> kettenis_i386newframe-20030419-branchpoint * [new tag] kettenis_i386newframe-20030504-mergepoint -> kettenis_i386newframe-20030504-mergepoint * [new tag] kettenis_i386newframe-20030517-mergepoint -> kettenis_i386newframe-20030517-mergepoint * [new tag] kettenis_sparc-20030918-branchpoint -> kettenis_sparc-20030918-branchpoint * [new tag] kseitz_interps-20020528-branchpoint -> kseitz_interps-20020528-branchpoint * [new tag] kseitz_interps-20020829-merge -> kseitz_interps-20020829-merge * [new tag] kseitz_interps-20020930-merge -> kseitz_interps-20020930-merge * [new tag] kseitz_interps-20021103-merge -> kseitz_interps-20021103-merge * [new tag] kseitz_interps-20021105-merge -> kseitz_interps-20021105-merge * [new tag] mingw-runtime-2_0 -> mingw-runtime-2_0 * [new tag] mingw-runtime-2_4 -> mingw-runtime-2_4 * [new tag] msnyder-checkpoint-072509-branchpoint -> msnyder-checkpoint-072509-branchpoint * [new tag] msnyder-fork-checkpoint-branchpoint -> msnyder-fork-checkpoint-branchpoint * [new tag] msnyder-reverse-20060331-branchpoint -> msnyder-reverse-20060331-branchpoint * [new tag] msnyder-reverse-20060502-branchpoint -> msnyder-reverse-20060502-branchpoint * [new tag] msnyder-reverse-20080609-branchpoint -> msnyder-reverse-20080609-branchpoint * [new tag] msnyder-tracepoint-checkpoint-branchpoint -> msnyder-tracepoint-checkpoint-branchpoint * [new tag] multiprocess-20081120-branchpoint -> multiprocess-20081120-branchpoint * [new tag] newlib-1_10_0 -> newlib-1_10_0 * [new tag] newlib-1_11_0 -> newlib-1_11_0 * [new tag] newlib-1_12_0 -> newlib-1_12_0 * [new tag] newlib-1_13_0 -> newlib-1_13_0 * [new tag] newlib-1_14_0 -> newlib-1_14_0 * [new tag] newlib-1_15_0 -> newlib-1_15_0 * [new tag] newlib-1_16_0 -> newlib-1_16_0 * [new tag] newlib-1_17_0 -> newlib-1_17_0 * [new tag] newlib-1_18_0 -> newlib-1_18_0 * [new tag] newlib-1_19_0 -> newlib-1_19_0 * [new tag] newlib-1_20_0 -> newlib-1_20_0 * [new tag] newlib-1_9_0 -> newlib-1_9_0 * [new tag] newlib-2000-02-17 -> newlib-2000-02-17 * [new tag] newlib-2_0_0 -> newlib-2_0_0 * [new tag] newlib-2_1_0 -> newlib-2_1_0 * [new tag] newlib-2_2_0 -> newlib-2_2_0 * [new tag] newlib-2_3_0 -> newlib-2_3_0 * [new tag] newlib-2_4_0 -> newlib-2_4_0 * [new tag] newlib-2_5_0 -> newlib-2_5_0 * [new tag] newlib-3.0.0 -> newlib-3.0.0 * [new tag] newlib-3.1.0 -> newlib-3.1.0 * [new tag] newlib-3.2.0 -> newlib-3.2.0 * [new tag] newlib-3.3.0 -> newlib-3.3.0 * [new tag] newlib-csl-20060320-branchpoint -> newlib-csl-20060320-branchpoint * [new tag] newlib-csl-arm-2005-q1a -> newlib-csl-arm-2005-q1a * [new tag] newlib-csl-arm-2005-q1b -> newlib-csl-arm-2005-q1b * [new tag] newlib-csl-arm-2006q1-6 -> newlib-csl-arm-2006q1-6 * [new tag] newlib-csl-arm-2006q3-19 -> newlib-csl-arm-2006q3-19 * [new tag] newlib-csl-arm-2006q3-21 -> newlib-csl-arm-2006q3-21 * [new tag] newlib-csl-arm-2006q3-26 -> newlib-csl-arm-2006q3-26 * [new tag] newlib-csl-arm-2006q3-27 -> newlib-csl-arm-2006q3-27 * [new tag] newlib-csl-coldfire-4_1-28 -> newlib-csl-coldfire-4_1-28 * [new tag] newlib-csl-coldfire-4_1-30 -> newlib-csl-coldfire-4_1-30 * [new tag] newlib-csl-coldfire-4_1-32 -> newlib-csl-coldfire-4_1-32 * [new tag] newlib-csl-innovasic-fido-3_4_4-33 -> newlib-csl-innovasic-fido-3_4_4-33 * [new tag] newlib-csl-sourcerygxx-3_4_4-25 -> newlib-csl-sourcerygxx-3_4_4-25 * [new tag] newlib-csl-sourcerygxx-4_1-12 -> newlib-csl-sourcerygxx-4_1-12 * [new tag] newlib-csl-sourcerygxx-4_1-13 -> newlib-csl-sourcerygxx-4_1-13 * [new tag] newlib-csl-sourcerygxx-4_1-14 -> newlib-csl-sourcerygxx-4_1-14 * [new tag] newlib-csl-sourcerygxx-4_1-17 -> newlib-csl-sourcerygxx-4_1-17 * [new tag] newlib-csl-sourcerygxx-4_1-18 -> newlib-csl-sourcerygxx-4_1-18 * [new tag] newlib-csl-sourcerygxx-4_1-19 -> newlib-csl-sourcerygxx-4_1-19 * [new tag] newlib-csl-sourcerygxx-4_1-21 -> newlib-csl-sourcerygxx-4_1-21 * [new tag] newlib-csl-sourcerygxx-4_1-23 -> newlib-csl-sourcerygxx-4_1-23 * [new tag] newlib-csl-sourcerygxx-4_1-24 -> newlib-csl-sourcerygxx-4_1-24 * [new tag] newlib-csl-sourcerygxx-4_1-26 -> newlib-csl-sourcerygxx-4_1-26 * [new tag] newlib-csl-sourcerygxx-4_1-27 -> newlib-csl-sourcerygxx-4_1-27 * [new tag] newlib-csl-sourcerygxx-4_1-28 -> newlib-csl-sourcerygxx-4_1-28 * [new tag] newlib-csl-sourcerygxx-4_1-30 -> newlib-csl-sourcerygxx-4_1-30 * [new tag] newlib-csl-sourcerygxx-4_1-32 -> newlib-csl-sourcerygxx-4_1-32 * [new tag] newlib-csl-sourcerygxx-4_1-4 -> newlib-csl-sourcerygxx-4_1-4 * [new tag] newlib-csl-sourcerygxx-4_1-5 -> newlib-csl-sourcerygxx-4_1-5 * [new tag] newlib-csl-sourcerygxx-4_1-6 -> newlib-csl-sourcerygxx-4_1-6 * [new tag] newlib-csl-sourcerygxx-4_1-7 -> newlib-csl-sourcerygxx-4_1-7 * [new tag] newlib-csl-sourcerygxx-4_1-8 -> newlib-csl-sourcerygxx-4_1-8 * [new tag] newlib-csl-sourcerygxx-4_1-9 -> newlib-csl-sourcerygxx-4_1-9 * [new tag] newlib-snapshot-20150323 -> newlib-snapshot-20150323 * [new tag] newlib-snapshot-20150423 -> newlib-snapshot-20150423 * [new tag] newlib-snapshot-20150526 -> newlib-snapshot-20150526 * [new tag] newlib-snapshot-20150623 -> newlib-snapshot-20150623 * [new tag] newlib-snapshot-20150723 -> newlib-snapshot-20150723 * [new tag] newlib-snapshot-20150824 -> newlib-snapshot-20150824 * [new tag] newlib-snapshot-20150924 -> newlib-snapshot-20150924 * [new tag] newlib-snapshot-20151023 -> newlib-snapshot-20151023 * [new tag] newlib-snapshot-20160104 -> newlib-snapshot-20160104 * [new tag] newlib-snapshot-20160226 -> newlib-snapshot-20160226 * [new tag] newlib-snapshot-20160527 -> newlib-snapshot-20160527 * [new tag] newlib-snapshot-20160923 -> newlib-snapshot-20160923 * [new tag] newlib-snapshot-20170228 -> newlib-snapshot-20170228 * [new tag] newlib-snapshot-20170323 -> newlib-snapshot-20170323 * [new tag] newlib-snapshot-20170421 -> newlib-snapshot-20170421 * [new tag] newlib-snapshot-20170519 -> newlib-snapshot-20170519 * [new tag] newlib-snapshot-20170623 -> newlib-snapshot-20170623 * [new tag] newlib-snapshot-20170720 -> newlib-snapshot-20170720 * [new tag] newlib-snapshot-20170818 -> newlib-snapshot-20170818 * [new tag] newlib-snapshot-20170922 -> newlib-snapshot-20170922 * [new tag] newlib-snapshot-20171222 -> newlib-snapshot-20171222 * [new tag] newlib-snapshot-20180118 -> newlib-snapshot-20180118 * [new tag] newlib-snapshot-20180226 -> newlib-snapshot-20180226 * [new tag] newlib-snapshot-20180720 -> newlib-snapshot-20180720 * [new tag] newlib-snapshot-20180802 -> newlib-snapshot-20180802 * [new tag] newlib-snapshot-20180831 -> newlib-snapshot-20180831 * [new tag] newlib-snapshot-20181231 -> newlib-snapshot-20181231 * [new tag] newlib-snapshot-20200102 -> newlib-snapshot-20200102 * [new tag] nickrob-async-20060513-branchpoint -> nickrob-async-20060513-branchpoint * [new tag] nickrob-async-20060828-mergepoint -> nickrob-async-20060828-mergepoint * [new tag] offbyone-20030313-branchpoint -> offbyone-20030313-branchpoint * [new tag] post-ptmalloc3 -> post-ptmalloc3 * [new tag] post_wait_sig_exit -> post_wait_sig_exit * [new tag] pre-cgf-merge -> pre-cgf-merge * [new tag] pre-cygwin-heap -> pre-cygwin-heap * [new tag] pre-no-this -> pre-no-this * [new tag] pre-notty -> pre-notty * [new tag] pre-posix-scan -> pre-posix-scan * [new tag] pre-ptmalloc3 -> pre-ptmalloc3 * [new tag] pre-ptymaster-archetype -> pre-ptymaster-archetype * [new tag] pre-ripout-set_console_state_for_spawn -> pre-ripout-set_console_state_for_spawn * [new tag] pre-sigrewrite -> pre-sigrewrite * [new tag] pre_wait_sig_exit -> pre_wait_sig_exit * [new tag] predaemon -> predaemon * [new tag] prefifo -> prefifo * [new tag] preoverlapped -> preoverlapped * [new tag] readline_4_3-import-branchpoint -> readline_4_3-import-branchpoint * [new tag] readline_5_1-import-branchpoint -> readline_5_1-import-branchpoint * [new tag] reparent-point -> reparent-point * [new tag] repo-unification-2000-02-06 -> repo-unification-2000-02-06 * [new tag] reverse-20080717-branchpoint -> reverse-20080717-branchpoint * [new tag] reverse-20080930-branchpoint -> reverse-20080930-branchpoint * [new tag] reverse-20081226-branchpoint -> reverse-20081226-branchpoint * [new tag] sid-20020905-branchpoint -> sid-20020905-branchpoint * [new tag] sid-snapshot-20071001 -> sid-snapshot-20071001 * [new tag] sid-snapshot-20071101 -> sid-snapshot-20071101 * [new tag] sid-snapshot-20071201 -> sid-snapshot-20071201 * [new tag] sid-snapshot-20080101 -> sid-snapshot-20080101 * [new tag] sid-snapshot-20080201 -> sid-snapshot-20080201 * [new tag] sid-snapshot-20080301 -> sid-snapshot-20080301 * [new tag] sid-snapshot-20080401 -> sid-snapshot-20080401 * [new tag] sid-snapshot-20080403 -> sid-snapshot-20080403 * [new tag] sid-snapshot-20080501 -> sid-snapshot-20080501 * [new tag] sid-snapshot-20080601 -> sid-snapshot-20080601 * [new tag] sid-snapshot-20080701 -> sid-snapshot-20080701 * [new tag] sid-snapshot-20080801 -> sid-snapshot-20080801 * [new tag] sid-snapshot-20080901 -> sid-snapshot-20080901 * [new tag] sid-snapshot-20081001 -> sid-snapshot-20081001 * [new tag] sid-snapshot-20081101 -> sid-snapshot-20081101 * [new tag] sid-snapshot-20081201 -> sid-snapshot-20081201 * [new tag] sid-snapshot-20090101 -> sid-snapshot-20090101 * [new tag] sid-snapshot-20090201 -> sid-snapshot-20090201 * [new tag] sid-snapshot-20090301 -> sid-snapshot-20090301 * [new tag] sid-snapshot-20090401 -> sid-snapshot-20090401 * [new tag] sid-snapshot-20090501 -> sid-snapshot-20090501 * [new tag] sid-snapshot-20090601 -> sid-snapshot-20090601 * [new tag] sid-snapshot-20090701 -> sid-snapshot-20090701 * [new tag] sid-snapshot-20090801 -> sid-snapshot-20090801 * [new tag] sid-snapshot-20090901 -> sid-snapshot-20090901 * [new tag] sid-snapshot-20091001 -> sid-snapshot-20091001 * [new tag] sid-snapshot-20091101 -> sid-snapshot-20091101 * [new tag] sid-snapshot-20091201 -> sid-snapshot-20091201 * [new tag] sid-snapshot-20100101 -> sid-snapshot-20100101 * [new tag] sid-snapshot-20100201 -> sid-snapshot-20100201 * [new tag] sid-snapshot-20100301 -> sid-snapshot-20100301 * [new tag] sid-snapshot-20100401 -> sid-snapshot-20100401 * [new tag] sid-snapshot-20100501 -> sid-snapshot-20100501 * [new tag] sid-snapshot-20100601 -> sid-snapshot-20100601 * [new tag] sid-snapshot-20100701 -> sid-snapshot-20100701 * [new tag] sid-snapshot-20100801 -> sid-snapshot-20100801 * [new tag] sid-snapshot-20100901 -> sid-snapshot-20100901 * [new tag] sid-snapshot-20101001 -> sid-snapshot-20101001 * [new tag] sid-snapshot-20101101 -> sid-snapshot-20101101 * [new tag] sid-snapshot-20101201 -> sid-snapshot-20101201 * [new tag] sid-snapshot-20110101 -> sid-snapshot-20110101 * [new tag] sid-snapshot-20110201 -> sid-snapshot-20110201 * [new tag] sid-snapshot-20110301 -> sid-snapshot-20110301 * [new tag] sid-snapshot-20110401 -> sid-snapshot-20110401 * [new tag] sid-snapshot-20110501 -> sid-snapshot-20110501 * [new tag] sid-snapshot-20110601 -> sid-snapshot-20110601 * [new tag] sid-snapshot-20110701 -> sid-snapshot-20110701 * [new tag] sid-snapshot-20110801 -> sid-snapshot-20110801 * [new tag] sid-snapshot-20110901 -> sid-snapshot-20110901 * [new tag] sid-snapshot-20111001 -> sid-snapshot-20111001 * [new tag] sid-snapshot-20111101 -> sid-snapshot-20111101 * [new tag] sid-snapshot-20111201 -> sid-snapshot-20111201 * [new tag] sid-snapshot-20120101 -> sid-snapshot-20120101 * [new tag] sid-snapshot-20120201 -> sid-snapshot-20120201 * [new tag] sid-snapshot-20120301 -> sid-snapshot-20120301 * [new tag] sid-snapshot-20120401 -> sid-snapshot-20120401 * [new tag] sid-snapshot-20120501 -> sid-snapshot-20120501 * [new tag] sid-snapshot-20120601 -> sid-snapshot-20120601 * [new tag] sid-snapshot-20120701 -> sid-snapshot-20120701 * [new tag] sid-snapshot-20120801 -> sid-snapshot-20120801 * [new tag] sid-snapshot-20120901 -> sid-snapshot-20120901 * [new tag] sid-snapshot-20121001 -> sid-snapshot-20121001 * [new tag] sid-snapshot-20121101 -> sid-snapshot-20121101 * [new tag] sid-snapshot-20121201 -> sid-snapshot-20121201 * [new tag] sid-snapshot-20130101 -> sid-snapshot-20130101 * [new tag] sid-snapshot-20130201 -> sid-snapshot-20130201 * [new tag] sid-snapshot-20130301 -> sid-snapshot-20130301 * [new tag] sid-snapshot-20130401 -> sid-snapshot-20130401 * [new tag] sid-snapshot-20130501 -> sid-snapshot-20130501 * [new tag] sid-snapshot-20130601 -> sid-snapshot-20130601 * [new tag] sid-snapshot-20130701 -> sid-snapshot-20130701 * [new tag] sid-snapshot-20130801 -> sid-snapshot-20130801 * [new tag] sid-snapshot-20130901 -> sid-snapshot-20130901 * [new tag] sid-snapshot-20131001 -> sid-snapshot-20131001 * [new tag] sid-snapshot-20131101 -> sid-snapshot-20131101 * [new tag] sid-snapshot-20131201 -> sid-snapshot-20131201 * [new tag] sid-snapshot-20140101 -> sid-snapshot-20140101 * [new tag] sid-snapshot-20140201 -> sid-snapshot-20140201 * [new tag] sid-snapshot-20140301 -> sid-snapshot-20140301 * [new tag] sid-snapshot-20140401 -> sid-snapshot-20140401 * [new tag] sid-snapshot-20140501 -> sid-snapshot-20140501 * [new tag] sid-snapshot-20140601 -> sid-snapshot-20140601 * [new tag] sid-snapshot-20140701 -> sid-snapshot-20140701 * [new tag] sid-snapshot-20140801 -> sid-snapshot-20140801 * [new tag] sid-snapshot-20140901 -> sid-snapshot-20140901 * [new tag] sid-snapshot-20141001 -> sid-snapshot-20141001 * [new tag] sid-snapshot-20141101 -> sid-snapshot-20141101 * [new tag] sid-snapshot-20141201 -> sid-snapshot-20141201 * [new tag] sid-snapshot-20150101 -> sid-snapshot-20150101 * [new tag] sid-snapshot-20150201 -> sid-snapshot-20150201 * [new tag] sid-snapshot-20150301 -> sid-snapshot-20150301 * [new tag] tcltk840-20020924-branchpoint -> tcltk840-20020924-branchpoint * [new tag] w32api-1_5 -> w32api-1_5 * [new tag] w32api-2_2 -> w32api-2_2 * [new tag] winsup-2000-02-17 -> winsup-2000-02-17 * [new tag] x86_64versiong3 -> x86_64versiong3 * [new tag] zephyr-sdk-0.17.4 -> zephyr-sdk-0.17.4 HEAD is now at 82d62ed1a zephyr: Disable LTO when building the library HEAD is now at 82d62ed1a zephyr: Disable LTO when building the library === updating segger (modules/debug/segger): --- segger: initializing Initialized empty Git repository in /home/embo/main_ZMK/modules/debug/segger/.git/ --- segger: fetching, need revision cf56b1d9c80f81a26e2ac5727c9cf177116a4692 remote: Enumerating objects: 327, done. remote: Counting objects: 100% (122/122), done. remote: Compressing objects: 100% (66/66), done. remote: Total 327 (delta 69), reused 74 (delta 54), pack-reused 205 (from 1) Receiving objects: 100% (327/327), 239.07 KiB | 975.00 KiB/s, done. Resolving deltas: 100% (166/166), done. From https://github.com/zephyrproject-rtos/segger * [new branch] master -> refs/west/master * [new branch] v1.14-branch -> refs/west/v1.14-branch HEAD is now at cf56b1d readme: Add readme HEAD is now at cf56b1d readme: Add readme === updating tinycrypt (modules/crypto/tinycrypt): --- tinycrypt: initializing Initialized empty Git repository in /home/embo/main_ZMK/modules/crypto/tinycrypt/.git/ --- tinycrypt: fetching, need revision 1012a3ebee18c15ede5efc8332ee2fc37817670f remote: Enumerating objects: 51, done. remote: Counting objects: 100% (51/51), done. remote: Compressing objects: 100% (32/32), done. remote: Total 51 (delta 15), reused 49 (delta 14), pack-reused 0 (from 0) Unpacking objects: 100% (51/51), 67.28 KiB | 649.00 KiB/s, done. From https://github.com/zephyrproject-rtos/tinycrypt * [new branch] master -> refs/west/master HEAD is now at 1012a3e Fix warnings reported by UBSAN HEAD is now at 1012a3e Fix warnings reported by UBSAN === updating trusted-firmware-a (modules/tee/tf-a/trusted-firmware-a): --- trusted-firmware-a: initializing Initialized empty Git repository in /home/embo/main_ZMK/modules/tee/tf-a/trusted-firmware-a/.git/ --- trusted-firmware-a: fetching, need revision 713ffbf96c5bcbdeab757423f10f73eb304eff07 remote: Enumerating objects: 164089, done. remote: Counting objects: 100% (28115/28115), done. remote: Compressing objects: 100% (2656/2656), done. remote: Total 164089 (delta 26412), reused 25459 (delta 25459), pack-reused 135974 (from 1) Receiving objects: 100% (164089/164089), 43.57 MiB | 3.08 MiB/s, done. Resolving deltas: 100% (110235/110235), done. From https://github.com/zephyrproject-rtos/trusted-firmware-a * [new branch] master -> refs/west/master * [new branch] zephyr-tfa-v2.10.4 -> refs/west/zephyr-tfa-v2.10.4 * [new branch] zephyr_tf-a_lts-v2.14 -> refs/west/zephyr_tf-a_lts-v2.14 * [new tag] arm_cca_v0.1 -> arm_cca_v0.1 * [new tag] arm_cca_v0.2 -> arm_cca_v0.2 * [new tag] arm_cca_v0.3 -> arm_cca_v0.3 * [new tag] for-v0.4-rc0 -> for-v0.4-rc0 * [new tag] for-v0.4/05.20 -> for-v0.4/05.20 * [new tag] for-v0.4/05.21 -> for-v0.4/05.21 * [new tag] for-v0.4/05.22 -> for-v0.4/05.22 * [new tag] v0.2 -> v0.2 * [new tag] v0.3 -> v0.3 * [new tag] v0.3-Juno -> v0.3-Juno * [new tag] v0.3-Juno-0.2 -> v0.3-Juno-0.2 * [new tag] v0.3-Juno-0.3 -> v0.3-Juno-0.3 * [new tag] v0.4 -> v0.4 * [new tag] v0.4-Juno-0.4 -> v0.4-Juno-0.4 * [new tag] v0.4-Juno-0.4-rc0 -> v0.4-Juno-0.4-rc0 * [new tag] v0.4-Juno-0.5 -> v0.4-Juno-0.5 * [new tag] v0.4-Juno-0.5-rc0 -> v0.4-Juno-0.5-rc0 * [new tag] v0.4-Juno-0.5-rc1 -> v0.4-Juno-0.5-rc1 * [new tag] v0.4-Juno-0.6-rc0 -> v0.4-Juno-0.6-rc0 * [new tag] v0.4-Juno-0.6-rc1 -> v0.4-Juno-0.6-rc1 * [new tag] v0.4-rc1 -> v0.4-rc1 * [new tag] v0.4-rc2 -> v0.4-rc2 * [new tag] v1.0 -> v1.0 * [new tag] v1.0-rc0 -> v1.0-rc0 * [new tag] v1.1 -> v1.1 * [new tag] v1.1-Juno-0.1 -> v1.1-Juno-0.1 * [new tag] v1.1-rc0 -> v1.1-rc0 * [new tag] v1.1-rc1 -> v1.1-rc1 * [new tag] v1.1-rc2 -> v1.1-rc2 * [new tag] v1.1-rc3 -> v1.1-rc3 * [new tag] v1.2 -> v1.2 * [new tag] v1.2-rc0 -> v1.2-rc0 * [new tag] v1.3 -> v1.3 * [new tag] v1.3-rc0 -> v1.3-rc0 * [new tag] v1.3_rc1 -> v1.3_rc1 * [new tag] v1.3_rc2 -> v1.3_rc2 * [new tag] v1.4 -> v1.4 * [new tag] v1.4-rc0 -> v1.4-rc0 * [new tag] v1.5 -> v1.5 * [new tag] v1.5-rc0 -> v1.5-rc0 * [new tag] v1.5-rc1 -> v1.5-rc1 * [new tag] v1.5-rc2 -> v1.5-rc2 * [new tag] v1.5-rc3 -> v1.5-rc3 * [new tag] v1.6 -> v1.6 * [new tag] v1.6-rc0 -> v1.6-rc0 * [new tag] v1.6-rc1 -> v1.6-rc1 * [new tag] v2.0 -> v2.0 * [new tag] v2.0-rc0 -> v2.0-rc0 * [new tag] v2.1 -> v2.1 * [new tag] v2.1-rc0 -> v2.1-rc0 * [new tag] v2.1-rc1 -> v2.1-rc1 * [new tag] v2.2 -> v2.2 * [new tag] v2.2-rc0 -> v2.2-rc0 * [new tag] v2.2-rc1 -> v2.2-rc1 * [new tag] v2.2-rc2 -> v2.2-rc2 * [new tag] v2.3 -> v2.3 * [new tag] v2.3-rc0 -> v2.3-rc0 * [new tag] v2.3-rc1 -> v2.3-rc1 * [new tag] v2.3-rc2 -> v2.3-rc2 * [new tag] v2.4 -> v2.4 * [new tag] v2.4-rc0 -> v2.4-rc0 * [new tag] v2.4-rc1 -> v2.4-rc1 * [new tag] v2.4-rc2 -> v2.4-rc2 * [new tag] v2.5 -> v2.5 * [new tag] v2.5-rc0 -> v2.5-rc0 * [new tag] v2.5-rc1 -> v2.5-rc1 * [new tag] v2.6 -> v2.6 * [new tag] v2.6-rc0 -> v2.6-rc0 * [new tag] v2.6-rc1 -> v2.6-rc1 * [new tag] v2.7 -> v2.7 * [new tag] v2.7-rc0 -> v2.7-rc0 * [new tag] v2.7-rc1 -> v2.7-rc1 * [new tag] v2.7.0 -> v2.7.0 * [new tag] zephyr-lts-v2.10.4 -> zephyr-lts-v2.10.4 HEAD is now at 713ffbf96 Merge pull request #4 from ceolin/v2.10.4 HEAD is now at 713ffbf96 Merge pull request #4 from ceolin/v2.10.4 === updating uoscore-uedhoc (modules/lib/uoscore-uedhoc): --- uoscore-uedhoc: initializing Initialized empty Git repository in /home/embo/main_ZMK/modules/lib/uoscore-uedhoc/.git/ --- uoscore-uedhoc: fetching, need revision 54abc109c9c0adfd53c70077744c14e454f04f4a remote: Enumerating objects: 7568, done. remote: Counting objects: 100% (7568/7568), done. remote: Compressing objects: 100% (2037/2037), done. remote: Total 7568 (delta 5577), reused 7324 (delta 5341), pack-reused 0 (from 0) Receiving objects: 100% (7568/7568), 2.43 MiB | 2.34 MiB/s, done. Resolving deltas: 100% (5577/5577), done. From https://github.com/zephyrproject-rtos/uoscore-uedhoc * [new branch] zephyr -> refs/west/zephyr HEAD is now at 54abc10 Merge pull request #5 from rlubos/upmerge-02-2025 HEAD is now at 54abc10 Merge pull request #5 from rlubos/upmerge-02-2025 === updating zcbor (modules/lib/zcbor): --- zcbor: initializing Initialized empty Git repository in /home/embo/main_ZMK/modules/lib/zcbor/.git/ --- zcbor: fetching, need revision 9b07780aca6fb21f82a241ba386ad9b379809337 remote: Enumerating objects: 5947, done. remote: Total 5947 (delta 0), reused 0 (delta 0), pack-reused 5947 (from 1) Receiving objects: 100% (5947/5947), 1.63 MiB | 1.40 MiB/s, done. Resolving deltas: 100% (3603/3603), done. From https://github.com/zephyrproject-rtos/zcbor * [new branch] main -> refs/west/main * [new branch] release/0.6.1 -> refs/west/release/0.6.1 * [new branch] release/0.8.2 -> refs/west/release/0.8.2 * [new tag] 0.1.0 -> 0.1.0 * [new tag] 0.2.0 -> 0.2.0 * [new tag] 0.3.0 -> 0.3.0 * [new tag] 0.3.1 -> 0.3.1 * [new tag] 0.4.0 -> 0.4.0 * [new tag] 0.5.0 -> 0.5.0 * [new tag] 0.5.1 -> 0.5.1 * [new tag] 0.6.0 -> 0.6.0 * [new tag] 0.8.0 -> 0.8.0 * [new tag] 0.8.1 -> 0.8.1 * [new tag] 0.9.0 -> 0.9.0 * [new tag] 0.9.1 -> 0.9.1 * [new tag] deprecated-master -> deprecated-master * [new tag] inital-pr -> inital-pr * [new tag] old-structure -> old-structure HEAD is now at 9b07780 Update version to 0.9.1 HEAD is now at 9b07780 Update version to 0.9.1 End 'west init& update': 2026-06-09T20:34:50_199724901_ns Zephyr (/home/embo/main_ZMK/zephyr/share/zephyr-package/cmake) has been added to the user package registry in: ~/.cmake/packages/Zephyr ZephyrUnittest (/home/embo/main_ZMK/zephyr/share/zephyrunittest-package/cmake) has been added to the user package registry in: ~/.cmake/packages/ZephyrUnittest Ignoring windows-curses: markers 'sys_platform == "win32"' don't match your environment Ignoring python-magic-bin: markers 'sys_platform == "win32"' don't match your environment Requirement already satisfied: pyelftools>=0.29 in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from -r /home/embo/main_ZMK/zephyr/scripts/requirements-base.txt (line 7)) (0.33) Requirement already satisfied: PyYAML>=6.0 in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from -r /home/embo/main_ZMK/zephyr/scripts/requirements-base.txt (line 11)) (6.0.3) Requirement already satisfied: pykwalify in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from -r /home/embo/main_ZMK/zephyr/scripts/requirements-base.txt (line 14)) (1.8.0) Requirement already satisfied: canopen in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from -r /home/embo/main_ZMK/zephyr/scripts/requirements-base.txt (line 17)) (2.4.1) Requirement already satisfied: packaging in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from -r /home/embo/main_ZMK/zephyr/scripts/requirements-base.txt (line 18)) (26.2) Requirement already satisfied: progress in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from -r /home/embo/main_ZMK/zephyr/scripts/requirements-base.txt (line 19)) (1.6.1) Requirement already satisfied: patool in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from -r /home/embo/main_ZMK/zephyr/scripts/requirements-base.txt (line 20)) (4.0.5) Requirement already satisfied: psutil in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from -r /home/embo/main_ZMK/zephyr/scripts/requirements-base.txt (line 21)) (7.2.2) Requirement already satisfied: pylink-square in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from -r /home/embo/main_ZMK/zephyr/scripts/requirements-base.txt (line 22)) (1.7.0) Requirement already satisfied: pyserial in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from -r /home/embo/main_ZMK/zephyr/scripts/requirements-base.txt (line 23)) (3.5) Requirement already satisfied: requests in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from -r /home/embo/main_ZMK/zephyr/scripts/requirements-base.txt (line 24)) (2.34.2) Requirement already satisfied: semver in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from -r /home/embo/main_ZMK/zephyr/scripts/requirements-base.txt (line 25)) (3.0.4) Requirement already satisfied: tqdm in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from -r /home/embo/main_ZMK/zephyr/scripts/requirements-base.txt (line 26)) (4.67.3) Requirement already satisfied: anytree in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from -r /home/embo/main_ZMK/zephyr/scripts/requirements-base.txt (line 29)) (2.13.0) Requirement already satisfied: intelhex in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from -r /home/embo/main_ZMK/zephyr/scripts/requirements-base.txt (line 32)) (2.3.0) Requirement already satisfied: west>=0.14.0 in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from -r /home/embo/main_ZMK/zephyr/scripts/requirements-base.txt (line 36)) (1.5.0) Requirement already satisfied: colorama in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from -r /home/embo/main_ZMK/zephyr/scripts/requirements-build-test.txt (line 7)) (0.4.6) Requirement already satisfied: ply>=3.10 in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from -r /home/embo/main_ZMK/zephyr/scripts/requirements-build-test.txt (line 10)) (3.11) Requirement already satisfied: gcovr>=6.0 in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from -r /home/embo/main_ZMK/zephyr/scripts/requirements-build-test.txt (line 13)) (8.6) Requirement already satisfied: coverage in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from -r /home/embo/main_ZMK/zephyr/scripts/requirements-build-test.txt (line 14)) (7.14.1) Requirement already satisfied: pytest in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from -r /home/embo/main_ZMK/zephyr/scripts/requirements-build-test.txt (line 17)) (9.0.3) Requirement already satisfied: mypy in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from -r /home/embo/main_ZMK/zephyr/scripts/requirements-build-test.txt (line 18)) (2.1.0) Requirement already satisfied: mock>=4.0.1 in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from -r /home/embo/main_ZMK/zephyr/scripts/requirements-build-test.txt (line 21)) (5.2.0) Requirement already satisfied: junitparser in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from -r /home/embo/main_ZMK/zephyr/scripts/requirements-build-test.txt (line 24)) (5.0.0) Requirement already satisfied: pyocd>=0.35.0 in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from -r /home/embo/main_ZMK/zephyr/scripts/requirements-run-test.txt (line 6)) (0.44.1) Requirement already satisfied: tabulate in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from -r /home/embo/main_ZMK/zephyr/scripts/requirements-run-test.txt (line 9)) (0.10.0) Requirement already satisfied: natsort in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from -r /home/embo/main_ZMK/zephyr/scripts/requirements-run-test.txt (line 10)) (8.4.0) Requirement already satisfied: cbor>=1.0.0 in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from -r /home/embo/main_ZMK/zephyr/scripts/requirements-run-test.txt (line 13)) (1.0.0) Requirement already satisfied: python-can>=4.3.0 in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from -r /home/embo/main_ZMK/zephyr/scripts/requirements-run-test.txt (line 19)) (4.6.1) Requirement already satisfied: gitpython in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from -r /home/embo/main_ZMK/zephyr/scripts/requirements-extras.txt (line 7)) (3.1.50) Requirement already satisfied: gitlint in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from -r /home/embo/main_ZMK/zephyr/scripts/requirements-extras.txt (line 10)) (0.19.1) Requirement already satisfied: junit2html in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from -r /home/embo/main_ZMK/zephyr/scripts/requirements-extras.txt (line 13)) (31.1.3) Requirement already satisfied: lpc_checksum in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from -r /home/embo/main_ZMK/zephyr/scripts/requirements-extras.txt (line 16)) (3.0.0) Requirement already satisfied: Pillow>=10.0 in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from -r /home/embo/main_ZMK/zephyr/scripts/requirements-extras.txt (line 19)) (12.2.0) Requirement already satisfied: PyGithub in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from -r /home/embo/main_ZMK/zephyr/scripts/requirements-extras.txt (line 22)) (2.9.1) Requirement already satisfied: graphviz in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from -r /home/embo/main_ZMK/zephyr/scripts/requirements-extras.txt (line 25)) (0.21) Requirement already satisfied: clang-format>=15.0.0 in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from -r /home/embo/main_ZMK/zephyr/scripts/requirements-compliance.txt (line 5)) (22.1.5) Requirement already satisfied: lxml in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from -r /home/embo/main_ZMK/zephyr/scripts/requirements-compliance.txt (line 8)) (6.1.1) Requirement already satisfied: pylint>=3 in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from -r /home/embo/main_ZMK/zephyr/scripts/requirements-compliance.txt (line 10)) (4.0.5) Requirement already satisfied: python-magic in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from -r /home/embo/main_ZMK/zephyr/scripts/requirements-compliance.txt (line 12)) (0.4.27) Requirement already satisfied: ruff==0.8.1 in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from -r /home/embo/main_ZMK/zephyr/scripts/requirements-compliance.txt (line 13)) (0.8.1) Requirement already satisfied: sphinx-lint in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from -r /home/embo/main_ZMK/zephyr/scripts/requirements-compliance.txt (line 14)) (1.0.2) Requirement already satisfied: unidiff in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from -r /home/embo/main_ZMK/zephyr/scripts/requirements-compliance.txt (line 15)) (0.7.5) Requirement already satisfied: yamllint in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from -r /home/embo/main_ZMK/zephyr/scripts/requirements-compliance.txt (line 16)) (1.38.0) Requirement already satisfied: grpcio-tools==1.68.0 in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from -r /home/embo/main_ZMK/modules/lib/nanopb/extra/requirements.txt (line 1)) (1.68.0) Requirement already satisfied: setuptools>=66.1.0 in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from -r /home/embo/main_ZMK/modules/lib/nanopb/extra/requirements.txt (line 2)) (82.0.1) Requirement already satisfied: protobuf<6.0dev,>=5.26.1 in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from grpcio-tools==1.68.0->-r /home/embo/main_ZMK/modules/lib/nanopb/extra/requirements.txt (line 1)) (5.29.6) Requirement already satisfied: grpcio>=1.68.0 in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from grpcio-tools==1.68.0->-r /home/embo/main_ZMK/modules/lib/nanopb/extra/requirements.txt (line 1)) (1.81.0) Requirement already satisfied: docopt>=0.6.2 in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from pykwalify->-r /home/embo/main_ZMK/zephyr/scripts/requirements-base.txt (line 14)) (0.6.2) Requirement already satisfied: python-dateutil>=2.8.0 in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from pykwalify->-r /home/embo/main_ZMK/zephyr/scripts/requirements-base.txt (line 14)) (2.9.0.post0) Requirement already satisfied: ruamel.yaml>=0.16.0 in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from pykwalify->-r /home/embo/main_ZMK/zephyr/scripts/requirements-base.txt (line 14)) (0.19.1) Requirement already satisfied: six in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from pylink-square->-r /home/embo/main_ZMK/zephyr/scripts/requirements-base.txt (line 22)) (1.17.0) Requirement already satisfied: charset_normalizer<4,>=2 in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from requests->-r /home/embo/main_ZMK/zephyr/scripts/requirements-base.txt (line 24)) (3.4.7) Requirement already satisfied: idna<4,>=2.5 in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from requests->-r /home/embo/main_ZMK/zephyr/scripts/requirements-base.txt (line 24)) (3.18) Requirement already satisfied: urllib3<3,>=1.26 in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from requests->-r /home/embo/main_ZMK/zephyr/scripts/requirements-base.txt (line 24)) (2.7.0) Requirement already satisfied: certifi>=2023.5.7 in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from requests->-r /home/embo/main_ZMK/zephyr/scripts/requirements-base.txt (line 24)) (2026.5.20) Requirement already satisfied: colorlog in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from gcovr>=6.0->-r /home/embo/main_ZMK/zephyr/scripts/requirements-build-test.txt (line 13)) (6.10.1) Requirement already satisfied: jinja2 in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from gcovr>=6.0->-r /home/embo/main_ZMK/zephyr/scripts/requirements-build-test.txt (line 13)) (3.1.6) Requirement already satisfied: pygments>=2.13.0 in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from gcovr>=6.0->-r /home/embo/main_ZMK/zephyr/scripts/requirements-build-test.txt (line 13)) (2.20.0) Requirement already satisfied: iniconfig>=1.0.1 in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from pytest->-r /home/embo/main_ZMK/zephyr/scripts/requirements-build-test.txt (line 17)) (2.3.0) Requirement already satisfied: pluggy<2,>=1.5 in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from pytest->-r /home/embo/main_ZMK/zephyr/scripts/requirements-build-test.txt (line 17)) (1.6.0) Requirement already satisfied: typing_extensions>=4.6.0 in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from mypy->-r /home/embo/main_ZMK/zephyr/scripts/requirements-build-test.txt (line 18)) (4.15.0) Requirement already satisfied: mypy_extensions>=1.0.0 in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from mypy->-r /home/embo/main_ZMK/zephyr/scripts/requirements-build-test.txt (line 18)) (1.1.0) Requirement already satisfied: pathspec>=1.0.0 in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from mypy->-r /home/embo/main_ZMK/zephyr/scripts/requirements-build-test.txt (line 18)) (1.1.1) Requirement already satisfied: librt>=0.11.0 in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from mypy->-r /home/embo/main_ZMK/zephyr/scripts/requirements-build-test.txt (line 18)) (0.11.0) Requirement already satisfied: ast-serialize<1.0.0,>=0.3.0 in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from mypy->-r /home/embo/main_ZMK/zephyr/scripts/requirements-build-test.txt (line 18)) (0.5.0) Requirement already satisfied: capstone<6.0,>=5.0 in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from pyocd>=0.35.0->-r /home/embo/main_ZMK/zephyr/scripts/requirements-run-test.txt (line 6)) (5.0.9) Requirement already satisfied: cmsis-pack-manager<1.0,>=0.5.2 in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from pyocd>=0.35.0->-r /home/embo/main_ZMK/zephyr/scripts/requirements-run-test.txt (line 6)) (0.6.0) Requirement already satisfied: importlib_metadata>=3.6 in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from pyocd>=0.35.0->-r /home/embo/main_ZMK/zephyr/scripts/requirements-run-test.txt (line 6)) (9.0.0) Requirement already satisfied: importlib_resources in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from pyocd>=0.35.0->-r /home/embo/main_ZMK/zephyr/scripts/requirements-run-test.txt (line 6)) (7.1.0) Requirement already satisfied: intervaltree<4.0,>=3.0.2 in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from pyocd>=0.35.0->-r /home/embo/main_ZMK/zephyr/scripts/requirements-run-test.txt (line 6)) (3.2.1) Requirement already satisfied: lark<2.0,>=1.1.5 in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from pyocd>=0.35.0->-r /home/embo/main_ZMK/zephyr/scripts/requirements-run-test.txt (line 6)) (1.3.1) Requirement already satisfied: libusb-package<2.0,>=1.0 in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from pyocd>=0.35.0->-r /home/embo/main_ZMK/zephyr/scripts/requirements-run-test.txt (line 6)) (1.0.26.3) Requirement already satisfied: prettytable<4.0,>=2.0 in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from pyocd>=0.35.0->-r /home/embo/main_ZMK/zephyr/scripts/requirements-run-test.txt (line 6)) (3.17.0) Requirement already satisfied: pyusb<2.0,>=1.2.1 in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from pyocd>=0.35.0->-r /home/embo/main_ZMK/zephyr/scripts/requirements-run-test.txt (line 6)) (1.3.1) Requirement already satisfied: appdirs<2.0,>=1.4 in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from cmsis-pack-manager<1.0,>=0.5.2->pyocd>=0.35.0->-r /home/embo/main_ZMK/zephyr/scripts/requirements-run-test.txt (line 6)) (1.4.4) Requirement already satisfied: cffi in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from cmsis-pack-manager<1.0,>=0.5.2->pyocd>=0.35.0->-r /home/embo/main_ZMK/zephyr/scripts/requirements-run-test.txt (line 6)) (2.0.0) Requirement already satisfied: sortedcontainers in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from intervaltree<4.0,>=3.0.2->pyocd>=0.35.0->-r /home/embo/main_ZMK/zephyr/scripts/requirements-run-test.txt (line 6)) (2.4.0) Requirement already satisfied: wcwidth in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from prettytable<4.0,>=2.0->pyocd>=0.35.0->-r /home/embo/main_ZMK/zephyr/scripts/requirements-run-test.txt (line 6)) (0.7.0) Requirement already satisfied: wrapt~=1.10 in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from python-can>=4.3.0->-r /home/embo/main_ZMK/zephyr/scripts/requirements-run-test.txt (line 19)) (1.17.3) Requirement already satisfied: gitdb<5,>=4.0.1 in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from gitpython->-r /home/embo/main_ZMK/zephyr/scripts/requirements-extras.txt (line 7)) (4.0.12) Requirement already satisfied: smmap<6,>=3.0.1 in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from gitdb<5,>=4.0.1->gitpython->-r /home/embo/main_ZMK/zephyr/scripts/requirements-extras.txt (line 7)) (5.0.3) Requirement already satisfied: gitlint-core==0.19.1 in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from gitlint-core[trusted-deps]==0.19.1->gitlint->-r /home/embo/main_ZMK/zephyr/scripts/requirements-extras.txt (line 10)) (0.19.1) Requirement already satisfied: arrow>=1 in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from gitlint-core==0.19.1->gitlint-core[trusted-deps]==0.19.1->gitlint->-r /home/embo/main_ZMK/zephyr/scripts/requirements-extras.txt (line 10)) (1.2.3) Requirement already satisfied: click>=8 in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from gitlint-core==0.19.1->gitlint-core[trusted-deps]==0.19.1->gitlint->-r /home/embo/main_ZMK/zephyr/scripts/requirements-extras.txt (line 10)) (8.1.3) Requirement already satisfied: sh>=1.13.0 in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from gitlint-core==0.19.1->gitlint-core[trusted-deps]==0.19.1->gitlint->-r /home/embo/main_ZMK/zephyr/scripts/requirements-extras.txt (line 10)) (1.14.3) Requirement already satisfied: pynacl>=1.4.0 in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from PyGithub->-r /home/embo/main_ZMK/zephyr/scripts/requirements-extras.txt (line 22)) (1.6.2) Requirement already satisfied: pyjwt>=2.4.0 in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from pyjwt[crypto]>=2.4.0->PyGithub->-r /home/embo/main_ZMK/zephyr/scripts/requirements-extras.txt (line 22)) (2.13.0) Requirement already satisfied: astroid<=4.1.dev0,>=4.0.2 in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from pylint>=3->-r /home/embo/main_ZMK/zephyr/scripts/requirements-compliance.txt (line 10)) (4.0.4) Requirement already satisfied: dill>=0.3.6 in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from pylint>=3->-r /home/embo/main_ZMK/zephyr/scripts/requirements-compliance.txt (line 10)) (0.4.1) Requirement already satisfied: isort!=5.13,<9,>=5 in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from pylint>=3->-r /home/embo/main_ZMK/zephyr/scripts/requirements-compliance.txt (line 10)) (8.0.1) Requirement already satisfied: mccabe<0.8,>=0.6 in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from pylint>=3->-r /home/embo/main_ZMK/zephyr/scripts/requirements-compliance.txt (line 10)) (0.7.0) Requirement already satisfied: platformdirs>=2.2 in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from pylint>=3->-r /home/embo/main_ZMK/zephyr/scripts/requirements-compliance.txt (line 10)) (4.10.0) Requirement already satisfied: tomlkit>=0.10.1 in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from pylint>=3->-r /home/embo/main_ZMK/zephyr/scripts/requirements-compliance.txt (line 10)) (0.15.0) Requirement already satisfied: polib in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from sphinx-lint->-r /home/embo/main_ZMK/zephyr/scripts/requirements-compliance.txt (line 14)) (1.2.0) Requirement already satisfied: regex in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from sphinx-lint->-r /home/embo/main_ZMK/zephyr/scripts/requirements-compliance.txt (line 14)) (2026.5.9) Requirement already satisfied: zipp>=3.20 in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from importlib_metadata>=3.6->pyocd>=0.35.0->-r /home/embo/main_ZMK/zephyr/scripts/requirements-run-test.txt (line 6)) (4.1.0) Requirement already satisfied: MarkupSafe>=2.0 in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from jinja2->gcovr>=6.0->-r /home/embo/main_ZMK/zephyr/scripts/requirements-build-test.txt (line 13)) (3.0.3) Requirement already satisfied: cryptography>=3.4.0 in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from pyjwt[crypto]>=2.4.0->PyGithub->-r /home/embo/main_ZMK/zephyr/scripts/requirements-extras.txt (line 22)) (48.0.0) Requirement already satisfied: pycparser in /home/embo/.main_ZMK_environment4/lib/python3.13/site-packages (from cffi->cmsis-pack-manager<1.0,>=0.5.2->pyocd>=0.35.0->-r /home/embo/main_ZMK/zephyr/scripts/requirements-run-test.txt (line 6)) (3.0) Start 'west sdk install': 2026-06-09T20:34:51_318980061_ns Found '/home/embo/main_ZMK/zephyr/SDK_VERSION', installing version 0.17.0. Fetching Zephyr SDK list... Zephyr SDK version 0.17.0 is already installed at /home/embo/zephyr-sdk-0.17.0. Using it. Zephyr SDK 0.17.0 Setup Registering Zephyr SDK CMake package ... Zephyr-sdk (/home/embo/zephyr-sdk-0.17.0/cmake) has been added to the user package registry in: ~/.cmake/packages/Zephyr-sdk All done. Zephyr SDK 0.17.0 Setup Installing host tools ... All done. End 'west sdk install': 2026-06-09T20:35:02_667900634_ns KKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKK : embo@emboLMDE7:~$ # ##################################### # # Build # # Start state: # # A new terminal window, thus activating the # virtual Python environment is required # # '-p' to erase the memory of a previous # build, e.g, 'rtl87x2g_evb_a', if any # source ~/.main_ZMK_environment4/bin/activate cd $HOME/main_ZMK/app # -- Zephyr version: 4.1.0 (/home/embo/main_ZMK/zephyr), build: 58a5874a446a # [187/187] Linking C executable zephyr/zmk.elf # # Memory region Used Size Region Size %age Used # FLASH: 47624 B 256 KB 18.17% # RAM: 11736 B 40 KB 28.65% # CCM: 0 GB 8 KB 0.00% # IDT_LIST: 0 GB 32 KB 0.00% # Generating files from /home/embo/main_ZMK/app/build/zephyr/zmk.elf for board: planck # echo ; echo "Start 'west build': $(date +%FT%T_%N_ns)" ; echo west build -p -b planck//zmk echo ; echo "End 'west build': $(date +%FT%T_%N_ns)" ; echo find $HOME/main_ZMK/app | grep elf | xargs ls -l # 975388 Jun 4 05:33 /home/embo/main_ZMK/app/build/zephyr/zephyr_pre0.elf # 974604 Jun 4 05:33 /home/embo/main_ZMK/app/build/zephyr/zmk.elf # Exit the virtual Python environment deactivate git -C $HOME/main_ZMK log -1 # 'On branch main'06-08) Start 'west build': 2026-06-09T22:52:56_377495480_ns -- west build: making build dir /home/embo/main_ZMK/app/build pristine -- west build: generating a build system Loading Zephyr default modules (Zephyr base). -- Application: /home/embo/main_ZMK/app -- CMake version: 3.31.6 -- Found Python3: /home/embo/.main_ZMK_environment4/bin/python3 (found suitable version "3.13.5", minimum required is "3.10") found components: Interpreter -- Cache files will be written to: /home/embo/.cache/zephyr -- Zephyr version: 4.1.0 (/home/embo/main_ZMK/zephyr) -- Found west (found suitable version "1.5.0", minimum required is "0.14.0") -- Board: planck, Revision: 6.0.0, qualifiers: stm32f303xc/zmk Checking /home/embo/main_ZMK/app/module Checking /home/embo/main_ZMK/app found /home/embo/main_ZMK/app planck_stm32f303xc_zmk for _stm32f303xc_zmk for planck with version 6.0.0 -- Using keymap file: /home/embo/main_ZMK/app/boards/olkb/planck/planck.keymap Checking /home/embo/main_ZMK/zephyr -- ZEPHYR_TOOLCHAIN_VARIANT not set, trying to locate Zephyr SDK -- Found host-tools: zephyr 0.17.0 (/home/embo/zephyr-sdk-0.17.0) -- Found toolchain: zephyr 0.17.0 (/home/embo/zephyr-sdk-0.17.0) -- Found Dtc: /home/embo/zephyr-sdk-0.17.0/sysroots/x86_64-pokysdk-linux/usr/bin/dtc (found suitable version "1.6.0", minimum required is "1.4.6") -- Found BOARD.dts: /home/embo/main_ZMK/app/boards/olkb/planck/planck_stm32f303xc_zmk.dts -- Found devicetree overlay: /home/embo/main_ZMK/app/boards/olkb/planck/planck.keymap -- Generated zephyr.dts: /home/embo/main_ZMK/app/build/zephyr/zephyr.dts -- Generated pickled edt: /home/embo/main_ZMK/app/build/zephyr/edt.pickle -- Generated devicetree_generated.h: /home/embo/main_ZMK/app/build/zephyr/include/generated/zephyr/devicetree_generated.h -- Including generated dts.cmake file: /home/embo/main_ZMK/app/build/zephyr/dts.cmake warning: Deprecated symbol KSCAN is enabled. Parsing /home/embo/main_ZMK/app/Kconfig Loaded configuration '/home/embo/main_ZMK/app/boards/olkb/planck/planck_stm32f303xc_zmk_6_0_0_defconfig' Merged configuration '/home/embo/main_ZMK/app/prj.conf' Configuration saved to '/home/embo/main_ZMK/app/build/zephyr/.config' Kconfig header saved to '/home/embo/main_ZMK/app/build/zephyr/include/generated/zephyr/autoconf.h' -- Found GnuLd: /home/embo/zephyr-sdk-0.17.0/arm-zephyr-eabi/arm-zephyr-eabi/bin/ld.bfd (found version "2.38") -- The C compiler identification is GNU 12.2.0 -- The CXX compiler identification is GNU 12.2.0 -- The ASM compiler identification is GNU -- Found assembler: /home/embo/zephyr-sdk-0.17.0/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -- Using ccache: /usr/bin/ccache -- Configuring done (4.7s) -- Generating done (0.1s) -- Build files have been written to: /home/embo/main_ZMK/app/build -- west build: building application [1/187] Preparing syscall dependency handling [3/187] Generating include/generated/zephyr/version.h -- Zephyr version: 4.1.0 (/home/embo/main_ZMK/zephyr), build: 58a5874a446a [187/187] Linking C executable zephyr/zmk.elf Memory region Used Size Region Size %age Used FLASH: 47624 B 256 KB 18.17% RAM: 11736 B 40 KB 28.65% CCM: 0 GB 8 KB 0.00% IDT_LIST: 0 GB 32 KB 0.00% Generating files from /home/embo/main_ZMK/app/build/zephyr/zmk.elf for board: planck End 'west build': 2026-06-09T22:53:06_366960180_ns -rwxrwxr-x 1 embo embo 974732 Jun 9 22:53 /home/embo/main_ZMK/app/build/zephyr/zephyr_pre0.elf -rwxrwxr-x 1 embo embo 973948 Jun 9 22:53 /home/embo/main_ZMK/app/build/zephyr/zmk.elf On branch main Your branch is up to date with 'origin/main'. nothing to commit, working tree clean commit ff09f2d0c9f13a868c8f71d71d9348ade438e4b6 (HEAD -> main, origin/main, origin/HEAD) Author: Genteure Date: Mon Jun 8 00:45:31 2026 +0800 docs: reorganise supported hardware page (#3363) * docs: supported hardware structure changes Added a few links to hardware intergration pages to provide clearly signal to reader "you can make your own". Removed "Contributing" section since it's not really relavent anymore. * docs: move unsupported boards section out of metadata * address review comments * fix broken link * board variants, interconnect, fix link, move unsupported section * Apply suggested change Co-authored-by: Nicolas Munnich <98408764+nmunnich@users.noreply.github.com> --------- Co-authored-by: Nicolas Munnich <98408764+nmunnich@users.noreply.github.com>