diff options
author | Gleb Smirnoff <glebius@FreeBSD.org> | 2017-02-28 05:14:42 +0000 |
---|---|---|
committer | Gleb Smirnoff <glebius@FreeBSD.org> | 2017-02-28 05:14:42 +0000 |
commit | efe3b0de1438e7a8473d92f2be57072394559e3c (patch) | |
tree | 2f14bfa2f7e513f4e2e5240e880f538be4bcd389 /etc/rc.d/abi | |
parent | d61db6be3733aaaf0cce235633b6bb627a20492b (diff) |
Notes
Diffstat (limited to 'etc/rc.d/abi')
-rwxr-xr-x | etc/rc.d/abi | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/etc/rc.d/abi b/etc/rc.d/abi index 6dd5e7e3cbbdd..bf582219a1f79 100755 --- a/etc/rc.d/abi +++ b/etc/rc.d/abi @@ -43,25 +43,18 @@ linux_start() fi } -svr4_start() -{ - echo -n ' svr4' - load_kld -m svr4elf svr4 -} - abi_start() { local _echostop _echostop= - if checkyesno sysvipc_enable || checkyesno linux_enable || checkyesno svr4_enable; then + if checkyesno sysvipc_enable || checkyesno linux_enable; then echo -n 'Additional ABI support:' _echostop=yes fi checkyesno sysvipc_enable && sysv_start checkyesno linux_enable && linux_start - checkyesno svr4_enable && svr4_start [ -n "${_echostop}" ] && echo '.' } |