diff --git a/SD/FPP_Install.sh b/SD/FPP_Install.sh index 3a8492536..26ab29181 100755 --- a/SD/FPP_Install.sh +++ b/SD/FPP_Install.sh @@ -48,8 +48,8 @@ # ############################################################################# FPPBRANCH=${FPPBRANCH:-"master"} -FPPIMAGEVER="2023-06" -FPPCFGVER="77" +FPPIMAGEVER="2023-07" +FPPCFGVER="78" FPPPLATFORM="UNKNOWN" FPPDIR=/opt/fpp FPPUSER=fpp @@ -410,7 +410,7 @@ case "${OSVER}" in rm -f /etc/systemd/network/50-default.network wget -O /etc/systemd/network/50-default.network https://raw.githubusercontent.com/FalconChristmas/fpp/master/etc/systemd/network/50-default.network if [ "$FPPPLATFORM" == "BeagleBone Black" ]; then - sed -e 's/LinkLocalAddressing=fallback/LinkLocalAddressing=yes/' /etc/systemd/network/50-default.network + sed -i -e 's/LinkLocalAddressing=fallback/LinkLocalAddressing=yes/' /etc/systemd/network/50-default.network fi diff --git a/SD/README.BBB b/SD/README.BBB index 3051d7749..0a9d1ec78 100644 --- a/SD/README.BBB +++ b/SD/README.BBB @@ -1,8 +1,8 @@ # FPP BBB Images creation notes (work in progress) # # FPP images are currently based on the following Debian BeagleBone images: -# am335x-debian-11.7-minimal-armhf-2023-05-18-2gb.img.xz -# from https://rcn-ee.net/rootfs/bb.org/testing/2023-05-18/bullseye-minimal-armhf/ +# am335x-debian-11.7-minimal-armhf-2023-07-01-2gb.img.xz +# from https://rcn-ee.net/rootfs/release/2023-07-01/bullseye-minimal-armhf/ # # The below steps (much can be run via copy/paste into a terminal) will # prepare the "clean image" from above to have the appropriate @@ -54,7 +54,7 @@ apt-get install wget # This MAY cause the beagle to change IP addresses, reboot to get things to settle and continue rm -f /etc/systemd/network/50-default.network wget -O /etc/systemd/network/50-default.network https://raw.githubusercontent.com/FalconChristmas/fpp/master/etc/systemd/network/50-default.network -sed -e 's/LinkLocalAddressing=fallback/LinkLocalAddressing=yes/' /etc/systemd/network/50-default.network +sed -i -e 's/LinkLocalAddressing=fallback/LinkLocalAddressing=yes/' /etc/systemd/network/50-default.network systemctl reload systemd-networkd diff --git a/SD/README.RaspberryPi b/SD/README.RaspberryPi index 9901754ec..61c668b28 100644 --- a/SD/README.RaspberryPi +++ b/SD/README.RaspberryPi @@ -8,7 +8,7 @@ version tested 2023-05-03-raspios-bullseye-armhf-lite.img.xz Resize the root partition to 3.5GB using fdisk (substitute the proper device for your SD card). - fdisk /dev/sdg + fdisk /dev/sdc p (Note the original start block of partition 2, you will need this later) d @@ -25,8 +25,8 @@ for your SD card). FSCK and resize the root partition (again, use your device name. - e2fsck -f /dev/sdg2 - resize2fs /dev/sdg2 + e2fsck -f /dev/sdc2 + resize2fs /dev/sdc2 Disable the auto partition resize script on the SD and enable the SSH server while we have the partition mounted: @@ -34,7 +34,7 @@ we have the partition mounted: # Make a temp mount location mkdir /mnt/tmp # Mount the boot partition - mount /dev/sdg1 /mnt/tmp + mount /dev/sdc1 /mnt/tmp # Backup the cmdline.txt file cp /mnt/tmp/cmdline.txt /mnt/tmp/cmdline.org # Disable the auto-resize of the root partition @@ -49,8 +49,8 @@ we have the partition mounted: # Unmount the file system umount /mnt/tmp # make sure the labels are set - dosfslabel /dev/sdb1 boot - e2label /dev/sdg2 rootfs + dosfslabel /dev/sdc1 boot + e2label /dev/sdc2 rootfs # Sync the changes so it's safe to remove the SD card sync