2024-07-14 18:46:14 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# Exit on any errors
|
|
|
|
set -e
|
|
|
|
|
|
|
|
DIR="$(dirname "$0")"
|
|
|
|
|
|
|
|
. "$DIR"/func.sh
|
|
|
|
|
|
|
|
depcheck
|
|
|
|
|
2024-10-05 18:03:38 +00:00
|
|
|
kextparam="console=ttyS0 console=tty0" kflav="lts" size=2G setup
|
2024-07-14 18:46:14 +00:00
|
|
|
|
|
|
|
addpkg openssh-server
|
|
|
|
addtty tty0
|
2024-10-05 18:03:38 +00:00
|
|
|
addsvc bundle.core bundle.net bundle.tty sshd.1
|
|
|
|
addsshkey "$DIR"/keys/id_ed25519.pub
|
2024-07-14 18:46:14 +00:00
|
|
|
|
|
|
|
pack
|