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 missing dependencies #15

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion bootstrap/00-kernel
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

set -xe

apk add --update linux-rpi linux-rpi4 raspberrypi-bootloader zram-init openrc
apk add --update alpine-conf busybox-openrc linux-rpi linux-rpi4 raspberrypi-bootloader zram-init openrc
rc-update add zram-init boot

echo "modules=loop,squashfs,sd-mod,usb-storage root=/dev/mmcblk0p2 rootfstype=ext4 elevator=deadline fsck.repair=yes console=tty1 rootwait quiet" > /boot/cmdline.txt
Expand Down
4 changes: 2 additions & 2 deletions bootstrap/04-services
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

set -xe

apk add eudev openssh haveged
apk add eudev chrony openssh haveged

for service in devfs dmesg; do
rc-update add $service sysinit
Expand All @@ -16,7 +16,7 @@ for service in dbus haveged sshd chronyd local networking avahi-daemon bluetooth
rc-update add $service default
done

setup-udev -n
#setup-udev -n

for service in mount-ro killprocs savecache; do
rc-update add $service shutdown
Expand Down