blob: 1b306ab7664faaf7b515dd70fe00b93d7eda9e00 (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
build() {
add_systemd_unit uname.service
add_symlink "/usr/lib/systemd/sysinit.target.wants/uname.service" "../uname.service"
# busybox provides uname, so we do not add it
}
help() {
echo "This hook adds an uname output to the boot process."
}
|