Up to [cvs.NetBSD.org] / src / sys / compat / common
Request diff between arbitrary revisions
Default branch: MAIN
Revision 1.8 / (download) - annotate - [select for diffs], Mon Dec 19 23:19:51 2022 UTC (3 months, 1 week ago) by pgoyette
Branch: MAIN
CVS Tags: HEAD
Changes since 1.7: +4 -1
lines
Diff to previous 1.7 (colored)
Create compat_100 module infrastructure now that we have branched for NetBSD-10
Revision 1.7 / (download) - annotate - [select for diffs], Mon Aug 9 20:49:09 2021 UTC (19 months, 2 weeks ago) by andvar
Branch: MAIN
CVS Tags: netbsd-10-base,
netbsd-10,
bouyer-sunxi-drm-base,
bouyer-sunxi-drm
Changes since 1.6: +2 -2
lines
Diff to previous 1.6 (colored)
fix various typos in compatibility, mainly in comments.
Revision 1.4.2.4 / (download) - annotate - [select for diffs], Mon Apr 13 08:04:13 2020 UTC (2 years, 11 months ago) by martin
Branch: phil-wifi
Changes since 1.4.2.3: +6 -2
lines
Diff to previous 1.4.2.3 (colored) to branchpoint 1.4 (colored) next main 1.5 (colored)
Mostly merge changes from HEAD upto 20200411
Revision 1.4.2.3 / (download) - annotate - [select for diffs], Wed Apr 8 14:08:00 2020 UTC (2 years, 11 months ago) by martin
Branch: phil-wifi
Changes since 1.4.2.2: +2 -1
lines
Diff to previous 1.4.2.2 (colored) to branchpoint 1.4 (colored)
Merge changes from current as of 20200406
Revision 1.5.2.1 / (download) - annotate - [select for diffs], Sat Jan 25 22:38:44 2020 UTC (3 years, 2 months ago) by ad
Branch: ad-namecache
Changes since 1.5: +2 -1
lines
Diff to previous 1.5 (colored) next main 1.6 (colored)
Sync with head.
Revision 1.6 / (download) - annotate - [select for diffs], Tue Jan 21 02:37:16 2020 UTC (3 years, 2 months ago) by pgoyette
Branch: MAIN
CVS Tags: thorpej-i2c-spi-conf2-base,
thorpej-i2c-spi-conf2,
thorpej-i2c-spi-conf-base,
thorpej-i2c-spi-conf,
thorpej-futex2-base,
thorpej-futex2,
thorpej-futex-base,
thorpej-futex,
thorpej-cfargs2-base,
thorpej-cfargs2,
thorpej-cfargs-base,
thorpej-cfargs,
phil-wifi-20200421,
phil-wifi-20200411,
phil-wifi-20200406,
is-mlppp-base,
is-mlppp,
cjep_sun2x-base1,
cjep_sun2x-base,
cjep_sun2x,
cjep_staticlib_x-base1,
cjep_staticlib_x-base,
cjep_staticlib_x,
bouyer-xenpvh-base2,
bouyer-xenpvh-base1,
bouyer-xenpvh-base,
bouyer-xenpvh,
ad-namecache-base3,
ad-namecache-base2
Changes since 1.5: +2 -1
lines
Diff to previous 1.5 (colored)
Split the compat_50 module into two, separating the QUOTA-related stuff from the rest of the module. This allows loading of the (main) compat_50 module on kernels that don't include ``options QUOTA''. Welcome to 9.99.40 ! Addresses PR kern/54875
Revision 1.5 / (download) - annotate - [select for diffs], Sun Sep 22 22:59:38 2019 UTC (3 years, 6 months ago) by christos
Branch: MAIN
CVS Tags: phil-wifi-20191119,
ad-namecache-base1,
ad-namecache-base
Branch point for: ad-namecache
Changes since 1.4: +7 -3
lines
Diff to previous 1.4 (colored)
Add a new member to struct vfsstat and grow the unused members The new member is caled f_mntfromlabel and it is the dkw_wname of the corresponding wedge. This is now used by df -W to display the mountpoint name as NAME=
Revision 1.4.2.2 / (download) - annotate - [select for diffs], Mon Jun 10 22:06:58 2019 UTC (3 years, 9 months ago) by christos
Branch: phil-wifi
Changes since 1.4.2.1: +135 -0
lines
Diff to previous 1.4.2.1 (colored) to branchpoint 1.4 (colored)
Sync with HEAD
Revision 1.4.2.1, Fri May 17 07:37:11 2019 UTC (3 years, 10 months ago) by christos
Branch: phil-wifi
Changes since 1.4: +0 -135
lines
FILE REMOVED
file files.common was added on branch phil-wifi on 2019-06-10 22:06:58 +0000
Revision 1.4 / (download) - annotate - [select for diffs], Fri May 17 07:37:11 2019 UTC (3 years, 10 months ago) by msaitoh
Branch: MAIN
CVS Tags: phil-wifi-20190609,
netbsd-9-base,
netbsd-9-3-RELEASE,
netbsd-9-2-RELEASE,
netbsd-9-1-RELEASE,
netbsd-9-0-RELEASE,
netbsd-9-0-RC2,
netbsd-9-0-RC1,
netbsd-9
Branch point for: phil-wifi
Changes since 1.3: +2 -1
lines
Diff to previous 1.3 (colored)
The max subtype of the ifmedia word is 31. It's too small for Ethernet now. We currently use use it up to 30. We should extend the limit to be able to use more than 10Gbps speeds. Our ifmedia(4) is inconvenience and have some problem so we should redesign the interface, but it's too late for netbsd-9 to do it. So, we keep the data structure size and modify the structure a bit. The strategy is almost the same as FreeBSD. Many bits of IFM_OMASK for Ethernet have not used, so use some of them for Ethernet's subtype. The differences against FreeBSD are: - We use NetBSD style compat code (i.e. no SIOCGIFXMEDIA). - FreeBSD's IFM_ETH_XTYPE's bit location is from 11 to "14" even though IFM_OMASK is from 8 to "15". We use _IFM_ETH_XTMASK from bit 13 to "15". - FreeBSD changed the meaning of IFM_TYPE_MATCH(). I think we should not do it. We keep it not changing and added new IFM_TYPE_SUBTYPE_MATCH() macro for matching both TYPE and SUBTYPE. - Added up to 400GBASE-SR16. New layout of the media word is as follows (from ifmedia_h): * if_media Options word: * Bits Use * ---- ------- * 0-4 Media subtype MAX SUBTYPE == 255 for ETH and 31 for others * 5-7 Media type * 8-15 Type specific options * 16-18 Mode (for multi-mode devices) * 19 (Reserved for Future Use) * 20-27 Shared (global) options * 28-31 Instance * * 3 2 1 * 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 * +-------+---------------+-+-----+---------------+-----+---------+ * | | |R| | | | | * | IMASK | GMASK |F|MMASK+-----+ OMASK |NMASK| TMASK | * | | |U| |XTMSK| | | | * +-------+---------------+-+-----+-----+---------+-----+---------+ * <-----> <---> <---> * IFM_INST() IFM_MODE() IFM_TYPE() * * IFM_SUBTYPE(other than ETH)<-------> * * <---> IFM_SUBTYPE(ETH)<-------> * * * <-------------> <-------------> * IFM_OPTIONS()
Revision 1.3 / (download) - annotate - [select for diffs], Mon Apr 15 02:07:11 2019 UTC (3 years, 11 months ago) by pgoyette
Branch: MAIN
CVS Tags: isaki-audio2-base,
isaki-audio2
Changes since 1.2: +2 -1
lines
Diff to previous 1.2 (colored)
Split the COMPAT_50 socket-timeout stuff out of kern/uipc_socket.c and into its own source file, which is now included in the compat_50 module. (Not sure how this got missed during the original [pgoyette-compat] work)
Revision 1.2 / (download) - annotate - [select for diffs], Sun Jan 27 02:08:39 2019 UTC (4 years, 2 months ago) by pgoyette
Branch: MAIN
Changes since 1.1: +133 -0
lines
Diff to previous 1.1 (colored)
Merge the [pgoyette-compat] branch
Revision 1.1.2.40 / (download) - annotate - [select for diffs], Fri Sep 28 08:42:01 2018 UTC (4 years, 5 months ago) by pgoyette
Branch: pgoyette-compat
CVS Tags: pgoyette-compat-merge-20190127
Changes since 1.1.2.39: +3 -5
lines
Diff to previous 1.1.2.39 (colored) to branchpoint 1.1 (colored) next main 1.2 (colored)
Use the correct attribute - compat_utils vs compat_util
Revision 1.1.2.39 / (download) - annotate - [select for diffs], Fri Sep 28 08:08:56 2018 UTC (4 years, 5 months ago) by pgoyette
Branch: pgoyette-compat
Changes since 1.1.2.38: +5 -3
lines
Diff to previous 1.1.2.38 (colored) to branchpoint 1.1 (colored)
Revert previous commit. There are still random unidentified references to these utility routings.
Revision 1.1.2.38 / (download) - annotate - [select for diffs], Thu Sep 27 23:48:58 2018 UTC (4 years, 6 months ago) by pgoyette
Branch: pgoyette-compat
Changes since 1.1.2.37: +5 -5
lines
Diff to previous 1.1.2.37 (colored) to branchpoint 1.1 (colored)
Add dependencies to ensure that the utility routines get included as built-in module when needed.
Revision 1.1.2.37 / (download) - annotate - [select for diffs], Sat Sep 22 10:30:53 2018 UTC (4 years, 6 months ago) by pgoyette
Branch: pgoyette-compat
Changes since 1.1.2.36: +4 -4
lines
Diff to previous 1.1.2.36 (colored) to branchpoint 1.1 (colored)
Missed this in previous files.* changes
Revision 1.1.2.36 / (download) - annotate - [select for diffs], Wed Sep 19 04:12:43 2018 UTC (4 years, 6 months ago) by pgoyette
Branch: pgoyette-compat
Changes since 1.1.2.35: +2 -1
lines
Diff to previous 1.1.2.35 (colored) to branchpoint 1.1 (colored)
Split out the vnd COMPAT_50 code
Revision 1.1.2.35 / (download) - annotate - [select for diffs], Wed Sep 12 21:46:09 2018 UTC (4 years, 6 months ago) by pgoyette
Branch: pgoyette-compat
Changes since 1.1.2.34: +17 -12
lines
Diff to previous 1.1.2.34 (colored) to branchpoint 1.1 (colored)
Complete removal of the "monolithic" all-version compat_sysvipc module
Revision 1.1.2.34 / (download) - annotate - [select for diffs], Mon Sep 10 08:41:47 2018 UTC (4 years, 6 months ago) by pgoyette
Branch: pgoyette-compat
Changes since 1.1.2.33: +2 -2
lines
Diff to previous 1.1.2.33 (colored) to branchpoint 1.1 (colored)
Remove the monolithic compat and compat_sysv modules. Now that we don't have aliases, we need to use only the version-specific module names when resolving dependencies.
Revision 1.1.2.33 / (download) - annotate - [select for diffs], Tue Apr 17 21:59:27 2018 UTC (4 years, 11 months ago) by pgoyette
Branch: pgoyette-compat
Changes since 1.1.2.32: +2 -2
lines
Diff to previous 1.1.2.32 (colored) to branchpoint 1.1 (colored)
Rename sysv_mod.[ch] to compat_sysv_mod.[ch] for consistency with other files that provide module(7) interfaces.
Revision 1.1.2.32 / (download) - annotate - [select for diffs], Tue Apr 17 07:24:55 2018 UTC (4 years, 11 months ago) by pgoyette
Branch: pgoyette-compat
Changes since 1.1.2.31: +2 -1
lines
Diff to previous 1.1.2.31 (colored) to branchpoint 1.1 (colored)
Finish separating the compat_09 and compat_43 stuff
Revision 1.1.2.31 / (download) - annotate - [select for diffs], Tue Apr 17 00:02:58 2018 UTC (4 years, 11 months ago) by pgoyette
Branch: pgoyette-compat
Changes since 1.1.2.30: +4 -1
lines
Diff to previous 1.1.2.30 (colored) to branchpoint 1.1 (colored)
First pass at compat modules for 4.3BSD, NetBSD-0.9, and NetBSD-1.0 XXX Still need to deal with the sysctl stuff and other code shared XXX between 09 and 43
Revision 1.1.2.30 / (download) - annotate - [select for diffs], Tue Apr 3 08:29:44 2018 UTC (4 years, 11 months ago) by pgoyette
Branch: pgoyette-compat
Changes since 1.1.2.29: +2 -1
lines
Diff to previous 1.1.2.29 (colored) to branchpoint 1.1 (colored)
Remove fixed allocation of modules' "required" lists (previously limited to MAXMODDEPS entries). Update the modctl(MODCTL_STAT) syscall to return the required data in a new format, and retain the previous data format in MODCTL_OSTAT. Update the compat_80 and compat_netbsd32 modules as needed.
Revision 1.1.2.29 / (download) - annotate - [select for diffs], Sat Mar 31 09:17:35 2018 UTC (4 years, 11 months ago) by pgoyette
Branch: pgoyette-compat
Changes since 1.1.2.28: +2 -1
lines
Diff to previous 1.1.2.28 (colored) to branchpoint 1.1 (colored)
create the compat_12 module
Revision 1.1.2.28 / (download) - annotate - [select for diffs], Fri Mar 30 11:18:34 2018 UTC (4 years, 11 months ago) by pgoyette
Branch: pgoyette-compat
Changes since 1.1.2.27: +2 -1
lines
Diff to previous 1.1.2.27 (colored) to branchpoint 1.1 (colored)
Add compat_13 module
Revision 1.1.2.27 / (download) - annotate - [select for diffs], Fri Mar 30 10:09:07 2018 UTC (4 years, 11 months ago) by pgoyette
Branch: pgoyette-compat
Changes since 1.1.2.26: +2 -1
lines
Diff to previous 1.1.2.26 (colored) to branchpoint 1.1 (colored)
Extract compat_14 stuff into its own module
Revision 1.1.2.26 / (download) - annotate - [select for diffs], Fri Mar 30 06:34:00 2018 UTC (4 years, 11 months ago) by pgoyette
Branch: pgoyette-compat
Changes since 1.1.2.25: +2 -2
lines
Diff to previous 1.1.2.25 (colored) to branchpoint 1.1 (colored)
typo in version dependency
Revision 1.1.2.25 / (download) - annotate - [select for diffs], Fri Mar 30 05:35:47 2018 UTC (4 years, 11 months ago) by pgoyette
Branch: pgoyette-compat
Changes since 1.1.2.24: +2 -1
lines
Diff to previous 1.1.2.24 (colored) to branchpoint 1.1 (colored)
Create and build a compat_16 module
Revision 1.1.2.24 / (download) - annotate - [select for diffs], Fri Mar 30 02:28:49 2018 UTC (4 years, 11 months ago) by pgoyette
Branch: pgoyette-compat
Changes since 1.1.2.23: +3 -3
lines
Diff to previous 1.1.2.23 (colored) to branchpoint 1.1 (colored)
Create and build the compat_20 module
Revision 1.1.2.23 / (download) - annotate - [select for diffs], Thu Mar 29 23:23:03 2018 UTC (4 years, 11 months ago) by pgoyette
Branch: pgoyette-compat
Changes since 1.1.2.22: +5 -2
lines
Diff to previous 1.1.2.22 (colored) to branchpoint 1.1 (colored)
Rename usb_30_subr.c --> usb_subr_30.c for consistency with others
Revision 1.1.2.22 / (download) - annotate - [select for diffs], Thu Mar 29 11:20:02 2018 UTC (5 years ago) by pgoyette
Branch: pgoyette-compat
Changes since 1.1.2.21: +2 -1
lines
Diff to previous 1.1.2.21 (colored) to branchpoint 1.1 (colored)
Split out the usb compat_30 code and add it to the module
Revision 1.1.2.21 / (download) - annotate - [select for diffs], Wed Mar 28 07:51:09 2018 UTC (5 years ago) by pgoyette
Branch: pgoyette-compat
Changes since 1.1.2.20: +2 -1
lines
Diff to previous 1.1.2.20 (colored) to branchpoint 1.1 (colored)
Split vnd compat_30 code out of the main driver and into the compat_30 module
Revision 1.1.2.20 / (download) - annotate - [select for diffs], Wed Mar 28 04:18:24 2018 UTC (5 years ago) by pgoyette
Branch: pgoyette-compat
Changes since 1.1.2.19: +3 -1
lines
Diff to previous 1.1.2.19 (colored) to branchpoint 1.1 (colored)
Initial pass at a compat_30 module. Still needs some work for dev/vnd and various dev/usb/*
Revision 1.1.2.19 / (download) - annotate - [select for diffs], Tue Mar 27 07:29:44 2018 UTC (5 years ago) by pgoyette
Branch: pgoyette-compat
Changes since 1.1.2.18: +3 -1
lines
Diff to previous 1.1.2.18 (colored) to branchpoint 1.1 (colored)
Create a compat_40 module
Revision 1.1.2.18 / (download) - annotate - [select for diffs], Sat Mar 24 01:59:15 2018 UTC (5 years ago) by pgoyette
Branch: pgoyette-compat
Changes since 1.1.2.17: +1 -2
lines
Diff to previous 1.1.2.17 (colored) to branchpoint 1.1 (colored)
Separate the compat_50 and compat_80 dispatching code from the main body of raidframe, and place into the appropriate compat modules. Enable building of the compat_80 module.
Revision 1.1.2.17 / (download) - annotate - [select for diffs], Fri Mar 23 09:38:48 2018 UTC (5 years ago) by pgoyette
Branch: pgoyette-compat
Changes since 1.1.2.16: +2 -2
lines
Diff to previous 1.1.2.16 (colored) to branchpoint 1.1 (colored)
For now, the compat_80 module is empty.
Revision 1.1.2.16 / (download) - annotate - [select for diffs], Wed Mar 21 10:12:48 2018 UTC (5 years ago) by pgoyette
Branch: pgoyette-compat
Changes since 1.1.2.15: +6 -1
lines
Diff to previous 1.1.2.15 (colored) to branchpoint 1.1 (colored)
Move if_spppsubr compat code into the compat50 module. More prep work for compat80 module (for raidframe)
Revision 1.1.2.15 / (download) - annotate - [select for diffs], Wed Mar 21 04:48:31 2018 UTC (5 years ago) by pgoyette
Branch: pgoyette-compat
Changes since 1.1.2.14: +3 -2
lines
Diff to previous 1.1.2.14 (colored) to branchpoint 1.1 (colored)
Split the compat_50 code out from the dev/clockctl driver and include it in the compat_50 and compat modules.
Revision 1.1.2.14 / (download) - annotate - [select for diffs], Mon Mar 19 21:54:43 2018 UTC (5 years ago) by pgoyette
Branch: pgoyette-compat
Changes since 1.1.2.13: +2 -1
lines
Diff to previous 1.1.2.13 (colored) to branchpoint 1.1 (colored)
Initial pass at a COMPAT_50 module. More to come.
Revision 1.1.2.13 / (download) - annotate - [select for diffs], Sun Mar 18 21:41:31 2018 UTC (5 years ago) by pgoyette
Branch: pgoyette-compat
Changes since 1.1.2.12: +2 -1
lines
Diff to previous 1.1.2.12 (colored) to branchpoint 1.1 (colored)
Import compat_60 changes for dev/ccd
Revision 1.1.2.12 / (download) - annotate - [select for diffs], Sun Mar 18 02:05:21 2018 UTC (5 years ago) by pgoyette
Branch: pgoyette-compat
Changes since 1.1.2.11: +2 -1
lines
Diff to previous 1.1.2.11 (colored) to branchpoint 1.1 (colored)
Move closer to a complete compat_60 module. All that remains is some tty stuff and some ccd ioctl()s.
Revision 1.1.2.11 / (download) - annotate - [select for diffs], Fri Mar 16 08:10:26 2018 UTC (5 years ago) by pgoyette
Branch: pgoyette-compat
Changes since 1.1.2.10: +3 -1
lines
Diff to previous 1.1.2.10 (colored) to branchpoint 1.1 (colored)
Move closer to getting a compat_60 module - still needs more work
Revision 1.1.2.10 / (download) - annotate - [select for diffs], Thu Mar 15 11:17:54 2018 UTC (5 years ago) by pgoyette
Branch: pgoyette-compat
Changes since 1.1.2.9: +3 -3
lines
Diff to previous 1.1.2.9 (colored) to branchpoint 1.1 (colored)
Resolve conflicts from sync-with-HEAD
Revision 1.1.2.9 / (download) - annotate - [select for diffs], Wed Mar 14 22:04:27 2018 UTC (5 years ago) by pgoyette
Branch: pgoyette-compat
Changes since 1.1.2.8: +38 -38
lines
Diff to previous 1.1.2.8 (colored) to branchpoint 1.1 (colored)
Tag files with their specific compat version required. This way the files only get included if needed, allowing for subsequent loading of COMPAT_xx modules for older-than-built-in code.
Revision 1.1.2.8 / (download) - annotate - [select for diffs], Wed Mar 14 02:24:56 2018 UTC (5 years ago) by pgoyette
Branch: pgoyette-compat
Changes since 1.1.2.7: +4 -1
lines
Diff to previous 1.1.2.7 (colored) to branchpoint 1.1 (colored)
Make do_openat()'s handling of path=NULL modular
Revision 1.1.2.7 / (download) - annotate - [select for diffs], Tue Mar 13 09:10:31 2018 UTC (5 years ago) by pgoyette
Branch: pgoyette-compat
Changes since 1.1.2.6: +3 -1
lines
Diff to previous 1.1.2.6 (colored) to branchpoint 1.1 (colored)
Move the swapstats compat code into the compat_netbsd module. Without this, a kernel configured without COMPAT_13 and/or COMPAT_50 could not execute the compat swapstats code, even if the compat_netbsd module had been loaded.
Revision 1.1.2.6 / (download) - annotate - [select for diffs], Mon Mar 12 01:59:31 2018 UTC (5 years ago) by pgoyette
Branch: pgoyette-compat
Changes since 1.1.2.5: +11 -10
lines
Diff to previous 1.1.2.5 (colored) to branchpoint 1.1 (colored)
Update dependencies for modules when they are built-in. Now we don't (or at least, shouldn't) need reminders in the GENERIC config files about which module options require other options. Update branch status doc accordingly.
Revision 1.1.2.5 / (download) - annotate - [select for diffs], Fri Mar 9 02:02:59 2018 UTC (5 years ago) by pgoyette
Branch: pgoyette-compat
Changes since 1.1.2.4: +2 -2
lines
Diff to previous 1.1.2.4 (colored) to branchpoint 1.1 (colored)
More on renaming the new module
Revision 1.1.2.4 / (download) - annotate - [select for diffs], Fri Mar 9 01:27:50 2018 UTC (5 years ago) by pgoyette
Branch: pgoyette-compat
Changes since 1.1.2.3: +5 -1
lines
Diff to previous 1.1.2.3 (colored) to branchpoint 1.1 (colored)
Split the sysv_ipc module into two pieces: one for contemporary SYSV* functionality, and one for compatability with previous NetBSD versions. No need to pull in all of compat just to have a sysv_ipc module.
Revision 1.1.2.3 / (download) - annotate - [select for diffs], Tue Mar 6 10:37:41 2018 UTC (5 years ago) by pgoyette
Branch: pgoyette-compat
Changes since 1.1.2.2: +2 -1
lines
Diff to previous 1.1.2.2 (colored) to branchpoint 1.1 (colored)
Move necessary routines out of compat_util.c and into exec_elf.c Once again, compat_util.c is only for modules, so move it back into compat/common/files.common and out of kern/files.kern
Revision 1.1.2.2 / (download) - annotate - [select for diffs], Tue Mar 6 10:00:10 2018 UTC (5 years ago) by pgoyette
Branch: pgoyette-compat
Changes since 1.1.2.1: +1 -2
lines
Diff to previous 1.1.2.1 (colored) to branchpoint 1.1 (colored)
compat_util.c is included in all kernels, so does not need to be listed here.
Revision 1.1.2.1 / (download) - annotate - [select for diffs], Tue Mar 6 05:38:20 2018 UTC (5 years ago) by pgoyette
Branch: pgoyette-compat
Changes since 1.1: +89 -0
lines
Diff to previous 1.1 (colored)
Add a files.common to list all the compat source files.
Revision 1.1, Tue Mar 6 05:38:20 2018 UTC (5 years ago) by pgoyette
Branch: MAIN
CVS Tags: pgoyette-compat-20190127,
pgoyette-compat-20190118,
pgoyette-compat-1226,
pgoyette-compat-1126,
pgoyette-compat-1020,
pgoyette-compat-0930,
pgoyette-compat-0906,
pgoyette-compat-0728,
pgoyette-compat-0625,
pgoyette-compat-0521,
pgoyette-compat-0502,
pgoyette-compat-0422,
pgoyette-compat-0415,
pgoyette-compat-0407,
pgoyette-compat-0330,
pgoyette-compat-0322,
pgoyette-compat-0315
Branch point for: pgoyette-compat
FILE REMOVED
file files.common was initially added on branch pgoyette-compat.