Home | History | Annotate | Download | only in conf
History log of /src/sys/arch/evbppc/conf/VIRTEX_DFC
RevisionDateAuthorComments
 1.34  29-Jan-2024  christos PR/57889: Ricardo Branco: ext2fs does not have user immutable and append
file flags, only system ones. Restrict those to the superuser. Before
the behavior was controlled by EXT2FS_SYSTEM_FLAGS. Make that behavior the
default.
 1.33  07-Aug-2022  simonb UFS/LFS dirhash:
- Enable UFS_DIRHASH if the architecture or kernel model specific config
file can use 128MB of RAM or more.
- Remove experimental tag from UFS_DIRHASH; it's been with RUMP kernel
and by a number of NetBSD developers for years.
- Add LFS_DIRHASH if LFS was enabled.
- Be somewhat consistent with FS options order.
 1.32  01-Aug-2018  maxv Unreference IPF/PF from all the config files, and enable NPF instead when
wanted. This also fixes some inconsistencies I saw in several files (eg
IPF options while IPF was not compiled, IPF+PF enabled by default, etc).
 1.31  05-Feb-2018  maxv branches: 1.31.2; 1.31.4;
Nuke DIRECTED_BROADCAST, it is not documented and not enabled anywhere. It
probably wouldn't have built correctly anyway, since there is no associated
defflag.

These ten lines of code in ip_input.c already look a lot better.
 1.30  14-Sep-2017  mrg clean up COMPAT_* options for native netbsd code:
- new series of files that are useful for saying "i want everything
since netbsd 1.4", etc.
- use the fact COMPAT_* options have future dependancies to remove
many redundant options.

removes about 3000 lines total across kernel configuration files.
tested about 30 random kernels in the changed list.
 1.29  29-Jul-2017  maxv Remove TCP_COMPAT_42 from the config files. Pass 2.
 1.28  21-Aug-2015  uebayasi Add `pseudo-device ksyms' where `options DDB' is used, because
config(1)/config(5) can't handle module dependency correctly at this
moment.

(This is another proof that shared file definition (`file xxx.c a|b')
is a bad idea.)
 1.27  07-Aug-2015  maxv Remove the KMEMSTATS option. It no longer exists.
 1.26  23-Aug-2014  dholland branches: 1.26.2;
Systematize (and in many cases, fix) the comments on options COMPAT_NN.

There are quite a few configs that are missing some COMPAT_NN options
in ways that don't make sense; this should probably get cleaned up
too, but for the time being I've not added or removed anything.
 1.25  17-Aug-2014  joerg Reorganize symbol table embedding. The existing option SYMTAB_SPACE is
replaced by the make option COPY_SYMTAB set to any value. The copy of
the symbol table is no longer put into a buffer in kern_ksyms.o, but a
small helper object. This object is build first with a dummy size, then
the kernel is linked to compute the real dimension of the symbol table
buffer. After that, the helper object is rebuild and the kernel linked
again.
 1.24  16-Aug-2014  apb Add "options COMPAT_70" to all kernel configuration files that
already had "options COMPAT_60".
 1.23  30-Jun-2013  rmind G/C PFIL_HOOKS from the kernel configs.
 1.22  05-Jun-2013  christos branches: 1.22.2;
remove obsolete networking options
 1.21  27-Apr-2013  christos the bogus number police
 1.20  02-Mar-2013  christos Under FAST_IPSEC, IPSEC_ESP is mandatory; GC it.
 1.19  01-Mar-2013  joerg Retire OSI network stack. OK core@
 1.18  17-Oct-2012  apb Add "options COMPAT_60" to all kernel configuration files
that already had "options COMPAT_50".
 1.17  05-Jun-2012  abs branches: 1.17.2;
Adjust the WSDISPLAY_COMPAT_USL comment to mention wsconscfg, to at least
give a hint that its not just for third party compat. No functional change.
 1.16  18-Dec-2011  dholland branches: 1.16.2;
WABPL is no longer considered experimental (has not been for some time)
so update its comment in config files.
 1.15  22-Nov-2011  tls branches: 1.15.2;

The rnd pseudo-device is not really optional, because it is in the same
source file as the entropy-pool code itself. Move it to std. This
will be cleaned up more when I split the sources up as they should be.

This fixes build breaks on several ports. Thanks to Havard Eidnes for
pointing them out.
 1.14  30-Jun-2011  wiz branches: 1.14.2;
dependant -> dependent
 1.13  06-Mar-2011  bouyer merge the bouyer-quota2 branch. This adds a new on-disk format
to store disk quota usage and limits, integrated with ffs
metadata. Usage is checked by fsck_ffs (no more quotacheck)
and is covered by the WAPBL journal. Enabled with kernel
option QUOTA2 (added where QUOTA was enabled in kernel config files),
turned on with tunefs(8) on a per-filesystem
basis. mount_mfs(8) can also turn quotas on.

See http://mail-index.netbsd.org/tech-kern/2011/02/19/msg010025.html
for details.
 1.12  06-Feb-2011  jmcneill - add support for using compressed images as splash images
- retire SPLASHSCREEN_PROGRESS and SPLASHSCREEN_IMAGE options
 1.11  23-Nov-2010  hannken branches: 1.11.2; 1.11.4;
Remove unused count from pseudo-device md.
 1.10  08-May-2010  mrg enable IPFILTER_COMPAT in all kernels that have ipfilter already.
canonicalise several of the ipf option segments in various files
(this mostly means adding commented out IPFILTER_DEFAULT_BLOCK,
or adding commented or uncommented IPFILTER_LOG or IPFILTER_LOOKUP
option statements.)

i built about 20 of these kernels to check, but not all of them.
 1.9  08-Feb-2010  joerg branches: 1.9.2;
Remove separate mb_map. The nmbclusters is computed at boot time based
on the amount of physical memory and limited by NMBCLUSTERS if present.
Architectures without direct mapping also limit it based on the kmem_map
size, which is used as backing store. On i386 and ARM, the maximum KVA
used for mbuf clusters is limited to 64MB by default.

The old default limits and limits based on GATEWAY have been removed.
key_registered_sb_max is hard-wired to a value derived from 2048
clusters.
 1.8  24-Dec-2009  kiyohara branches: 1.8.2;
Add COMPAT_50.
 1.7  05-Dec-2009  pooka Remove the portalfs kernel file system driver. Replace mount_portal(8)
with a version based on puffs. User functionality remains the same.
 1.6  06-Mar-2009  joerg Remove SHMMAXPGS from all kernel configs. Dynamically compute the
initial limit as 1/4 of the physical memory. Ensure the limit is at
least 1024 pages, the old default on most platforms.
 1.5  24-Nov-2008  ad branches: 1.5.4;
Remove softdep, pass 1. We are focused on improving journalling.

Proposed on tech-kern@.
 1.4  12-Nov-2008  ad Remove LKMs and switch to the module framework, pass 1.

Proposed on tech-kern@.
 1.3  31-Jul-2008  simonb branches: 1.3.2;
Add "options WAPBL" to standard GENERIC/INSTALL type configs.
 1.2  30-May-2008  tsutsui branches: 1.2.4;
Add options COMPAT_40 to files which have options COMPAT_30.
 1.1  02-Dec-2006  freza branches: 1.1.2; 1.1.4; 1.1.6; 1.1.50; 1.1.52; 1.1.54; 1.1.56;
Welcome to evbppc/virtex -- port to Xilinx Virtex series FPGA's with embedded
ibm405d5 core.

OK by Simon Burge
 1.1.56.2  18-Sep-2008  wrstuden Sync with wrstuden-revivesa-base-2.
 1.1.56.1  23-Jun-2008  wrstuden Sync w/ -current. 34 merge conflicts to follow.
 1.1.54.3  11-Aug-2010  yamt sync with head.
 1.1.54.2  11-Mar-2010  yamt sync with head
 1.1.54.1  04-May-2009  yamt sync with head.
 1.1.52.1  04-Jun-2008  yamt sync with head
 1.1.50.3  17-Jan-2009  mjf Sync with HEAD.
 1.1.50.2  28-Sep-2008  mjf Sync with HEAD.
 1.1.50.1  02-Jun-2008  mjf Sync with HEAD.
 1.1.6.2  12-Jan-2007  ad Sync with head.
 1.1.6.1  02-Dec-2006  ad file VIRTEX_DFC was added on branch newlock2 on 2007-01-12 01:00:47 +0000
 1.1.4.2  30-Dec-2006  yamt sync with head.
 1.1.4.1  02-Dec-2006  yamt file VIRTEX_DFC was added on branch yamt-lazymbuf on 2006-12-30 20:45:52 +0000
 1.1.2.2  10-Dec-2006  yamt sync with head.
 1.1.2.1  02-Dec-2006  yamt file VIRTEX_DFC was added on branch yamt-splraiseipl on 2006-12-10 07:15:53 +0000
 1.2.4.2  13-Dec-2008  haad Update haad-dm branch to haad-dm-base2.
 1.2.4.1  19-Oct-2008  haad Sync with HEAD.
 1.3.2.2  28-Apr-2009  skrll Sync with HEAD.
 1.3.2.1  19-Jan-2009  skrll Sync with HEAD.
 1.5.4.1  13-May-2009  jym Sync with HEAD.

Commit is split, to avoid a "too many arguments" protocol error.
 1.8.2.2  17-Aug-2010  uebayasi Sync with HEAD.
 1.8.2.1  30-Apr-2010  uebayasi Sync with HEAD.
 1.9.2.3  21-Apr-2011  rmind sync with head
 1.9.2.2  05-Mar-2011  rmind sync with head
 1.9.2.1  30-May-2010  rmind sync with head
 1.11.4.2  08-Feb-2011  bouyer Add QUOTA2 where QUOTA is enabled (and QUOTA2 commented out where QUOTA
is commented out)
 1.11.4.1  08-Feb-2011  bouyer Sync with HEAD
 1.11.2.1  06-Jun-2011  jruoho Sync with HEAD.
 1.14.2.3  22-May-2014  yamt sync with head.

for a reference, the tree before this commit was tagged
as yamt-pagecache-tag8.

this commit was splitted into small chunks to avoid
a limitation of cvs. ("Protocol error: too many arguments")
 1.14.2.2  30-Oct-2012  yamt sync with head
 1.14.2.1  17-Apr-2012  yamt sync with head
 1.15.2.1  18-Feb-2012  mrg merge to -current.
 1.16.2.1  12-Jun-2012  riz Pull up following revision(s) (requested by abs in ticket #311):
sys/arch/netwinder/conf/GENERIC: revision 1.112
sys/arch/i386/conf/GENERIC: revision 1.1074
sys/arch/atari/conf/MILAN.in: revision 1.26
sys/arch/zaurus/conf/GENERIC: revision 1.54
sys/arch/shark/conf/GENERIC: revision 1.101
sys/arch/hpcmips/conf/MPC303: revision 1.60
sys/arch/i386/conf/XEN3_DOM0: revision 1.67
sys/arch/evbarm/conf/MPCSA_GENERIC: revision 1.29
sys/arch/vax/conf/GENERIC: revision 1.181
sys/arch/sparc/conf/KRUPS: revision 1.59
sys/arch/evbarm/conf/BEAGLEBOARD: revision 1.27
sys/arch/i386/conf/INSTALL_FLOPPY: revision 1.16
sys/arch/prep/conf/GENERIC: revision 1.163
sys/arch/hpcmips/conf/GENERIC: revision 1.216
sys/arch/sparc/conf/TADPOLE3GX: revision 1.56
sys/arch/shark/conf/INSTALL: revision 1.50
sys/arch/next68k/conf/GENERIC: revision 1.127
sys/arch/evbppc/conf/VIRTEX_GSRD2: revision 1.16
sys/arch/evbppc/conf/VIRTEX_DFC: revision 1.17
sys/arch/evbppc/conf/EXPLORA451: revision 1.48
sys/arch/bebox/conf/INSTALL: revision 1.54
sys/arch/next68k/conf/SLAB: revision 1.46
sys/arch/i386/conf/GENERIC_TINY: revision 1.132
sys/arch/bebox/conf/GENERIC: revision 1.131
sys/arch/amd64/conf/XEN3_DOM0: revision 1.84
sys/arch/amd64/conf/GENERIC: revision 1.356
sys/arch/evbarm/conf/MMNET_GENERIC: revision 1.6
share/man/man4/wscons.4: revision 1.31
sys/arch/hpcmips/conf/TX3912: revision 1.79
sys/arch/evbarm/conf/ARMADILLO9: revision 1.35
sys/arch/hpcsh/conf/GENERIC: revision 1.97
sys/arch/i386/conf/ALL: revision 1.339
sys/arch/hpcmips/conf/TX3922: revision 1.93
sys/arch/cats/conf/INSTALL: revision 1.82
sys/arch/sparc64/conf/GENERIC: revision 1.151
sys/arch/i386/conf/INSTALL_TINY: revision 1.135
sys/arch/evbppc/conf/VIRTEX_GSRD1: revision 1.15
sys/arch/evbarm/conf/TS7200: revision 1.49
sys/arch/hpcmips/conf/VR41XX: revision 1.55
sys/arch/hp700/conf/GENERIC: revision 1.115
sys/arch/cats/conf/GENERIC: revision 1.140
Mention wsconscfg(8) needs WSDISPLAY_COMPAT_USL
If a port is going to have wscons for virtual terminals then it really make=
s
sense to enable WSDISPLAY_COMPAT_USL so the system can switch between the
virtual terminals...
Adjust the WSDISPLAY_COMPAT_USL comment to mention wsconscfg, to at least
give a hint that its not just for third party compat. No functional change.
 1.17.2.4  03-Dec-2017  jdolecek update from HEAD
 1.17.2.3  20-Aug-2014  tls Rebase to HEAD as of a few days ago.
 1.17.2.2  23-Jun-2013  tls resync from head
 1.17.2.1  20-Nov-2012  tls Resync to 2012-11-19 00:00:00 UTC
 1.22.2.1  28-Aug-2013  rmind sync with head
 1.26.2.2  28-Aug-2017  skrll Sync with HEAD
 1.26.2.1  22-Sep-2015  skrll Sync with HEAD
 1.31.4.1  10-Jun-2019  christos Sync with HEAD
 1.31.2.1  06-Sep-2018  pgoyette Sync with HEAD

Resolve a couple of conflicts (result of the uimin/uimax changes)

RSS XML Feed