diff options
author | yar <yar@FreeBSD.org> | 2006-07-21 15:55:18 +0000 |
---|---|---|
committer | yar <yar@FreeBSD.org> | 2006-07-21 15:55:18 +0000 |
commit | ed24981d4fb631909783798317f3e7ea3230c2e1 (patch) | |
tree | 7dc489241694687ab87a6cc520fe3b86afd5c0a1 /etc/rc.d | |
parent | bdb0150c3aaf1c675867554236ca3336cbb3e2be (diff) | |
download | FreeBSD-src-ed24981d4fb631909783798317f3e7ea3230c2e1.zip FreeBSD-src-ed24981d4fb631909783798317f3e7ea3230c2e1.tar.gz |
Since Alpha support isn't in HEAD anymore, remove Alpha-specific
rc.conf(5) knobs, too: osf1_enable, unaligned_print.
Diffstat (limited to 'etc/rc.d')
-rw-r--r-- | etc/rc.d/archdep | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/etc/rc.d/archdep b/etc/rc.d/archdep index 0d34c43..a53cf8d 100644 --- a/etc/rc.d/archdep +++ b/etc/rc.d/archdep @@ -13,27 +13,6 @@ name=archdep start_cmd="archdep_start" stop_cmd=":" -# should we print out unaligned access warnings? -# -unaligned_warnings() -{ - if ! checkyesno unaligned_print; then - sysctl machdep.unaligned_print=0 - fi -} - -# Alpha OSF/1 binary emulation -# -osf1_compat() -{ - if checkyesno osf1_enable; then - echo -n ' OSF/1' - if ! kldstat -v | grep osf1_ecoff > /dev/null; then - kldload osf1 > /dev/null 2>&1 - fi - fi -} - # SCO binary emulation # ibcs2_compat() @@ -61,10 +40,6 @@ archdep_start() i386) ibcs2_compat ;; - alpha) - osf1_compat - unaligned_warnings - ;; esac echo '.' } |