mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 02:11:53 +00:00
* wip * overhaul boot process * wip: new registry * wip * wip * wip * wip * wip * wip * os registry complete * ui fixes * fixes * fixes * more fixes * fix merkle archive
14 lines
187 B
Bash
Executable File
14 lines
187 B
Bash
Executable File
#!/bin/sh
|
|
|
|
ARGS=
|
|
|
|
for ARG in $@; do
|
|
if [ -d "/media/startos/root" ] && [ "$ARG" = "/" ]; then
|
|
ARG=/media/startos/root
|
|
fi
|
|
ARGS="$ARGS $ARG"
|
|
done
|
|
|
|
grub-probe-default $ARGS
|
|
|
|
exit $? |