You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I just started upgrading my whole RPi installation in our campus and switching to Bookworm.
Probably a bad idea, i setup an auto installation of our customized Raspbian distribution and i've been hit the 'override.json' telling that if your distrib name is Raspbian, then our custom partition_setup script is not taken into account ...
sed /tmp/2/etc/fstab -i -e "s|^[^#].* /boot/firmware |${part1} /boot/firmware |"
As a workaround, i just renamed our custom Raspbian hence PINN calling our custom partition_setup.sh ... it works
... and generally speaking, your solution is a must have for us when it's about fully automated reinstallation of OS :D
The text was updated successfully, but these errors were encountered:
Bookworm is no longer referred to as Raspbian. It was renamed to Raspberry Pi OS quite a while ago.
As a consequence, the PINN installations are now called Raspios_armXXX.
The partition_setup.sh script in there has already been modified to account for both.
Please see for example: https://sourceforge.net/projects/pinn/files/os_next/raspios_arm64/partition_setup.sh/download
This is the way I solved it there: sed /tmp/2/etc/fstab -i -e "s|^[^#].* /boot|${part1} /boot|" i.e. removal of a couple of spaces, so it caters for both types.
Raspbian is left for the older versions in case people still use them, but you should refer to raspios going forward.
Sorry for the confusion. This caught me out as well when it all changed to follow Debian's way of doing things.
EDIT: Glad to hear you're still making full use of PINN's features! 😄
Dear ProCount,
I just started upgrading my whole RPi installation in our campus and switching to Bookworm.
Probably a bad idea, i setup an auto installation of our customized Raspbian distribution and i've been hit the 'override.json' telling that if your distrib name is Raspbian, then our custom partition_setup script is not taken into account ...
Ok now, the issue:
Your script https://raw.githubusercontent.com/procount/pinn-os/master/partitions/Raspbian/partition_setup.sh ought to have one additional line:
sed /tmp/2/etc/fstab -i -e "s|^[^#].* /boot/firmware |${part1} /boot/firmware |"
As a workaround, i just renamed our custom Raspbian hence PINN calling our custom partition_setup.sh ... it works
... and generally speaking, your solution is a must have for us when it's about fully automated reinstallation of OS :D
The text was updated successfully, but these errors were encountered: