20 lines
292 B
Bash
20 lines
292 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
# Exit on any errors
|
||
|
set -e
|
||
|
|
||
|
DIR="$(dirname "$0")"
|
||
|
|
||
|
. "$DIR"/func.sh
|
||
|
|
||
|
depcheck
|
||
|
|
||
|
kextparam="console=ttyS2,115200n8" kflav=rockpro64 arch=aarch64 size=2G setup
|
||
|
|
||
|
addpkg openssh-server
|
||
|
addtty ttyS2
|
||
|
addsvc bundle.core bundle.net getty.ttyS2 sshd.1
|
||
|
addsshkey "$DIR"/id_ed25519.pub
|
||
|
|
||
|
pack
|