Move packages to srcpkgs dir

This commit is contained in:
Marty Oehme 2025-03-04 09:54:02 +01:00
parent be5fc0c3b4
commit 90f470c1a6
Signed by: Marty
GPG key ID: EDBF2ED917B2EF6A
9 changed files with 0 additions and 0 deletions

View file

@ -0,0 +1,13 @@
#!/bin/sh
[ -r conf ] && . ./conf
if [ -x /sbin/getty -o -x /bin/getty ]; then
# busybox
GETTY=getty
elif [ -x /sbin/agetty -o -x /bin/agetty ]; then
# util-linux
GETTY=agetty
fi
exec setsid ${GETTY} ${GETTY_ARGS} -nl $PREFIX_DIRECTORY/bin/$EXECUTABLE_NAME "${TTY}" "${BAUD_RATE}" "${TERM_NAME}"