-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update the Rasbian image to Debian 12 Bookworm to support Raspi 5 #100
base: main
Are you sure you want to change the base?
Conversation
5e2efd6
to
79db124
Compare
75cce4b
to
6e71980
Compare
6e71980
to
767ecf1
Compare
script/otbr-setup.bash
Outdated
|
||
# add calling of link_dongle.py script at startup to update symlink to the dongle | ||
sudo touch /etc/rc.local | ||
sudo chmod +x /etc/rc.local | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
script/otbr-setup.bash
Outdated
su -c "DOCKER=1 ${build_options[*]} script/bootstrap" pi | ||
|
||
rm -rf /home/pi/repo/ot-br-posix/third_party/openthread/repo | ||
cp -rp /home/pi/repo/openthread /home/pi/repo/ot-br-posix/third_party/openthread/repo | ||
|
||
apt-get purge -y cmake | ||
|
||
python3 -m venv /home/pi/.venv |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could the name of the virtual env be more specific so it's less likely to conflict with other virtual envs?
script/otbr-setup.bash
Outdated
su -c "DOCKER=1 ${build_options[*]} script/bootstrap" pi | ||
|
||
rm -rf /home/pi/repo/ot-br-posix/third_party/openthread/repo | ||
cp -rp /home/pi/repo/openthread /home/pi/repo/ot-br-posix/third_party/openthread/repo | ||
|
||
apt-get purge -y cmake | ||
|
||
python3 -m venv /home/pi/.venv | ||
source /home/pi/.venv/bin/activate |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should you call deactivate
at some time point?
3cc00ed
to
a449898
Compare
a449898
to
b2cf35c
Compare
This PR updates the Raspbian image used in the reference release build process to Debian 12 Bookworm, adding support for the Raspberry Pi 5. The key change is updating the
RASPIOS_URL
inscript/make-raspbian.bash
to point to a current Debian 12 Bookworm image.