aboutsummaryrefslogtreecommitdiffstats
path: root/install/uname
diff options
context:
space:
mode:
Diffstat (limited to 'install/uname')
-rw-r--r--install/uname7
1 files changed, 5 insertions, 2 deletions
diff --git a/install/uname b/install/uname
index 546c3e2..b30eeb3 100644
--- a/install/uname
+++ b/install/uname
@@ -1,8 +1,11 @@
#!/bin/sh
build() {
- add_systemd_unit uname.service
- add_symlink "/usr/lib/systemd/system/sysinit.target.wants/uname.service" "../uname.service"
+ if add_systemd_unit uname.service 2>/dev/null; then
+ add_symlink "/usr/lib/systemd/system/sysinit.target.wants/uname.service" "../uname.service"
+ else
+ add_runscript
+ fi
# busybox provides uname, so we do not add it
}