SM0 She11
Path:
/
/
usr
/
libexec
/
os-probes
/
mounted
Full Path (server): /usr/libexec/os-probes/mounted
Create Fil3
Upl04d Fil3
📄 05efi
[E]
[D]
[R]
📄 10freedos
[E]
[D]
[R]
📄 10qnx
[E]
[D]
[R]
📄 20macosx
[E]
[D]
[R]
📄 20microsoft
[E]
[D]
[R]
📄 30utility
[E]
[D]
[R]
📄 40lsb
[E]
[D]
[R]
📄 70hurd
[E]
[D]
[R]
📄 80minix
[E]
[D]
[R]
📄 83haiku
[E]
[D]
[R]
📄 90linux-distro
[E]
[D]
[R]
📄 90solaris
[E]
[D]
[R]
📁 efi
Open
[D]
[R]
Editing: 83haiku
#!/bin/sh # Detects Haiku on BeFS partitions. . /usr/share/os-prober/common.sh partition="$1" mpoint="$2" type="$3" # Weed out stuff that doesn't apply to us case "$type" in befs|befs_be) debug "$partition is a BeFS partition" ;; *) debug "$partition is not a BeFS partition: exiting"; exit 1 ;; esac if head -c 512 "$partition" | grep -qs "system.haiku_loader"; then debug "Stage 1 bootloader found" else debug "Stage 1 bootloader not found: exiting" exit 1 fi if system="$(item_in_dir "system" "$mpoint")" && item_in_dir -q "haiku_loader" "$mpoint/$system" && (item_in_dir -q "kernel_x86" "$mpoint/$system" || item_in_dir -q "kernel_x86_64" "$mpoint/$system") then debug "Stage 2 bootloader and kernel found" label="$(count_next_label Haiku)" result "$partition:Haiku:$label:chain" exit 0 else debug "Stage 2 bootloader and kernel not found: exiting" exit 1 fi
Save