diff options
author | jhb <jhb@FreeBSD.org> | 2014-10-24 19:58:24 +0000 |
---|---|---|
committer | jhb <jhb@FreeBSD.org> | 2014-10-24 19:58:24 +0000 |
commit | fcc57fff950cce92dd04cdfabbc48e25ca438027 (patch) | |
tree | ed429044b85c9832d38f266ffcae25a76613ed2c /sys/powerpc | |
parent | 7ecde33ff468d8092a8eb8ce8894268ae889bde0 (diff) | |
download | FreeBSD-src-fcc57fff950cce92dd04cdfabbc48e25ca438027.zip FreeBSD-src-fcc57fff950cce92dd04cdfabbc48e25ca438027.tar.gz |
Add COMPAT_FREEBSD9 and COMPAT_FREEBSD10 options to wrap code that
provides compatability for FreeBSD 9.x and 10.x binaries. Enable
these options in kernel configs that enable other COMPAT_FREEBSD<n>
options.
Diffstat (limited to 'sys/powerpc')
-rw-r--r-- | sys/powerpc/conf/GENERIC | 2 | ||||
-rw-r--r-- | sys/powerpc/conf/GENERIC64 | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/sys/powerpc/conf/GENERIC b/sys/powerpc/conf/GENERIC index 784297c..dfd5a61 100644 --- a/sys/powerpc/conf/GENERIC +++ b/sys/powerpc/conf/GENERIC @@ -59,6 +59,8 @@ options COMPAT_FREEBSD4 #Keep this for a while options COMPAT_FREEBSD5 #Compatible with FreeBSD5 options COMPAT_FREEBSD6 #Compatible with FreeBSD6 options COMPAT_FREEBSD7 #Compatible with FreeBSD7 +options COMPAT_FREEBSD9 # Compatible with FreeBSD9 +options COMPAT_FREEBSD10 # Compatible with FreeBSD10 options SCSI_DELAY=5000 #Delay (in ms) before probing SCSI options KTRACE #ktrace(1) syscall trace support options STACK #stack(9) support diff --git a/sys/powerpc/conf/GENERIC64 b/sys/powerpc/conf/GENERIC64 index 0003822..363625a 100644 --- a/sys/powerpc/conf/GENERIC64 +++ b/sys/powerpc/conf/GENERIC64 @@ -59,6 +59,8 @@ options COMPAT_FREEBSD32 #Compatible with FreeBSD/powerpc binaries options COMPAT_FREEBSD5 #Compatible with FreeBSD5 options COMPAT_FREEBSD6 #Compatible with FreeBSD6 options COMPAT_FREEBSD7 #Compatible with FreeBSD7 +options COMPAT_FREEBSD9 # Compatible with FreeBSD9 +options COMPAT_FREEBSD10 # Compatible with FreeBSD10 options SCSI_DELAY=5000 #Delay (in ms) before probing SCSI options KTRACE #ktrace(1) syscall trace support options STACK #stack(9) support |