commit 964cc1fbc4e8761695ee20fe57f609bffd16a864
parent 4d8754ba3ffb68717a67e7f5f6ba428337e33174
Author: Jan Pobrislo <ccx@webprojekty.cz>
Date: Mon, 25 Jul 2022 11:41:43 +0200
Use /dev/sda1 as boot device
Diffstat:
2 files changed, 5 insertions(+), 4 deletions(-)
diff --git a/fs b/fs
@@ -61,7 +61,8 @@
dependencies=
/boot
- source=LABEL="SPARK_BOOT"
+ source=/dev/sda1
+ #source=LABEL="SPARK_BOOT"
type=ext2
options=ro,noatime
bundles=ok-localmount
diff --git a/s6-rc.fileset b/s6-rc.fileset
@@ -87,10 +87,10 @@ m644
/mount-boot/down cN s6-umount "/boot" m644
/mount-boot/type cN oneshot m644
/mount-boot/up
-CN # mount LABEL="SPARK_BOOT" on /boot
+CN # mount /dev/sda1 on /boot
if { mkdir -p "/boot" }
- if -n -t { mount -t "ext2" -o "remount,ro,noatime" "LABEL=\"SPARK_BOOT\"" "/boot" }
- mount -t "ext2" -o "ro,noatime" "LABEL=\"SPARK_BOOT\"" "/boot"
+ if -n -t { mount -t "ext2" -o "remount,ro,noatime" "/dev/sda1" "/boot" }
+ mount -t "ext2" -o "ro,noatime" "/dev/sda1" "/boot"
/ok-sysinit d m755
/ok-sysinit/contents
CN mount-sys