summarylogtreecommitdiffstats
path: root/auxmount_install
blob: 534b94ebabafe198ed11dfb14fe97cb3fbb7591b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/bash

build() {
    add_runscript
}

help() {
    cat <<HELPEOF
Preserve auxiliary mounts of the early userspace.

If in initramfs an auxiliary mount was created
on /new_rootfoo, and $auxmnt/rootfoo exists,
the initramfs' /new_rootfoo mount will be
made available at $auxmnt/rootfoo.

Syntax: auxmnt=/<dir>
HELPEOF
}

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