Upgrading from v0.6
To upgrade to v0.7, first update the run-bakery
script with:
curl -O https://raw.githubusercontent.com/silitics/rugpi/v0.7.0/bakery/run-bakery && chmod +x ./run-bakery
Please also remove the old cache with:
rm -rf .rugpi
Here are the changes you need to make compared to version 0.6:
- The image option
boot_flow
has been superseded by thetarget
option. To use the newtarget
option make the following changes depending your previousboot_flow
:boot_flow = "u-boot"
⇒target = "rpi-uboot"
boot_flow = "tryboot"
⇒target = "rpi-tryboot"
- no
boot_flow
option ⇒target = "rpi-tryboot"
- The
include_firmware
option has been replaced with thecore/rpi-include-firmware
recipe. Please use that recipe and remove the old option. - The
architecture
option is no longer optional. Set it toarm64
for the previous default. - The following core recipes have been renamed:
core/raspberrypi
⇒core/rpi-raspios-setup
core/pi-cleanup
⇒core/rpi-raspios-cleanup
core/apt-cleanup
⇒core/pkg-cleanup
(also supportsapk
now)core/apt-update
⇒core/pkg-upgrade
(also supportsapk
now)core/apt-upgrade
⇒core/pkg-upgrade
(also supportsapk
now)
- The following core recipes have been removed:
core/disable-swap
(now part ofrpi-raspios-cleanup
via parameter)