aboutsummaryrefslogtreecommitdiffstats
path: root/dracut/module-setup.sh
blob: 86fcd321826d1397bca1a61a905f2e3e41323d12 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/bash

check() {
	return 0
}

# called by dracut
depends() {
	return 0
}

install() {
	inst_rules "$moddir/20-ykfde.rules"
	inst_hook cmdline 30 "$moddir/parse-mod.sh"
	inst_simple "$moddir/ykfde.sh" /sbin/ykfde.sh
	inst_simple /usr/lib/udev/ykfde
	inst_simple /etc/ykfde.conf

	dracut_need_initqueue
}