...
Linux kernel updated to version 6.6.47.
Added support for Yocto 4.2.4 root file-system.
Branch Switching Instructions
To switch to a specific branch, for example, to switch to v1.1, use the following commands:
Code Block |
---|
# Checkout the desired branch for all submodules
git submodule foreach git checkout v1.1
# Pull the latest updates for the specified branch
git submodule foreach git pull |
To switch back to the master, use these commands:
Code Block |
---|
# Checkout the desired branch for all submodules
git submodule foreach git checkout master
# Pull the latest updates for the specified branch
git submodule foreach git pull |