Skip to content
Snippets Groups Projects
Commit 2f40d9a8 authored by Natanael Copa's avatar Natanael Copa
Browse files

initfs: find apkovls on boot media

parent 83151c3b
No related merge requests found
...@@ -161,6 +161,9 @@ for i in usb floppy cdrom; do ...@@ -161,6 +161,9 @@ for i in usb floppy cdrom; do
[ -f "$ovl" ] && break [ -f "$ovl" ] && break
umount /media/$i 2>/dev/null umount /media/$i 2>/dev/null
done done
if ! [ -f "$ovl" ]; then
ovl=$(find_ovl $ALPINE_MNT)
fi
if [ -f "$ovl" ]; then if [ -f "$ovl" ]; then
ebegin "Loading user settings from $ovl" ebegin "Loading user settings from $ovl"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment