ISO/configs/syslinux-iso/overlay/etc/archiso/getshell
Aaron Griffin 246a00412b Initial commit of syslinux based iso config
Includes vesamenu config... needs testing

Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com>
2009-11-30 15:14:26 -08:00

10 lines
161 B
Bash

#!/bin/sh
. /etc/archiso/functions
shell="$(cmdline_param shell)"
[ -n "${shell}" ] && shell="/bin/bash"
[ ! -e "${shell}" ] && shell="/bin/sh"
exec ${shell}