summarylogtreecommitdiffstats
path: root/loop_install
blob: b9b8b1f1b3be2c3bff4845b02441dbaeb7b9d3e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/bin/bash

build() {
    add_module fuse
    add_module loop
    add_binary ntfs-3g

    add_runscript
}

help() {
    cat <<HELPEOF
Support for mounting Arch root from a file image.
Make sure to add the filesystem kernel modules
for your image type when building the initramfs
as it won't be auto-detected.

Syntax: root=<rootdev>@/<imagepath>
        partfstype=<fstype>
        offset=<int>
HELPEOF
}

# vim: set ft=sh ts=4 sw=4 et: