Skip to content

Commit

Permalink
Build script updates
Browse files Browse the repository at this point in the history
  • Loading branch information
dkulp committed Jul 25, 2023
1 parent e04bf1a commit cfce9ad
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions SD/FPP_Install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@
#
#############################################################################
FPPBRANCH=${FPPBRANCH:-"master"}
FPPIMAGEVER="2023-06"
FPPCFGVER="77"
FPPIMAGEVER="2023-07"
FPPCFGVER="78"
FPPPLATFORM="UNKNOWN"
FPPDIR=/opt/fpp
FPPUSER=fpp
Expand Down Expand Up @@ -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


Expand Down
6 changes: 3 additions & 3 deletions SD/README.BBB
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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

Expand Down
12 changes: 6 additions & 6 deletions SD/README.RaspberryPi
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -25,16 +25,16 @@ 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:

# 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
Expand All @@ -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

Expand Down

2 comments on commit cfce9ad

@RF-Farms
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bug in using Brave. in Brave I can't switch to different Menus. All that shown. is my ip then "/#" on all choices. In Chrome, works ok I get sample IP"/settings.php" type address.
Brave Ver (Version 1.56.11 Chromium: 115.0.5790.102 (Official Build) (arm64)) MacBookPro M1Pro
my guess PHP problem

@Poporacer
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Try deleting your browser cache

Please sign in to comment.