Skip to content
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

Install dhcpcd5 #6

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion install_limelight.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ chmod +x install.sh
rm install.sh

echo "Installing additional things"
sudo apt-get update
apt-get update
apt-get install -y pigpiod pigpio device-tree-compiler libraspberrypi-bin
apt-get install -y network-manager
apt-get install -y net-tools
Expand All @@ -16,6 +16,9 @@ apt-get install -y libegl1 libopengl0 libopencv-core406 libgl1-mesa-dri libcamer
# And keep rpi-bin installed
apt-mark manual libraspberrypi-bin

echo "Installing dhcpcd5"
apt-get install -y dhcpcd5

# edit boot partition
install -m 644 limelight/config.txt /boot/
install -m 644 userconf.txt /boot/
Expand Down
5 changes: 4 additions & 1 deletion install_opi5.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,14 @@ sed -i 's/# AllowedCPUs=4-7/AllowedCPUs=4-7/g' install.sh
./install.sh
rm install.sh

sudo apt-get update
apt-get update
apt-get install -y network-manager net-tools libatomic1
apt-mark manual netplan.io
apt-mark manual libatomic1

echo "Installing dhcpcd5"
apt-get install -y dhcpcd5

cat > /etc/netplan/00-default-nm-renderer.yaml <<EOF
network:
renderer: NetworkManager
Expand Down
7 changes: 5 additions & 2 deletions install_pi.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,17 @@ chmod +x install.sh
rm install.sh

echo "Installing additional things"
sudo apt-get update
apt-get update
apt-get install -y pigpiod pigpio device-tree-compiler libraspberrypi-bin
apt-get install -y network-manager
apt-get install -y net-tools
# libcamera-driver stuff + libatomic1 for wpilib
apt-get install -y libegl1 libopengl0 libopencv-core406 libgl1-mesa-dri libcamera0.1 libgbm1 libatomic1

# And keep rpi-bin installed, ideally
echo "Installing dhcpcd5"
apt-get install -y dhcpcd5

# And keep rpi-bin installed
apt-mark manual libraspberrypi-bin

# and edit boot partition
Expand Down