blob: 19112be55cf7f77eb94d419b7eb8fa2a2b92db41 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/bash
# This file is part of dracut.
# SPDX-License-Identifier: GPL-2.0-or-later
# called by dracut
install() {
inst_multiple -o \
/etc/udev/udev.hwdb \
"${udevdir}"/hwdb.bin
# Install the hosts local user configurations if enabled.
if [[ $hostonly ]]; then
inst_multiple -H -o \
"$udevconfdir"/hwdb.bin
fi
}
|