Actions
Submit #3270
closedfix man pages for sysctl KERN_OSREV and KERN_OSRELDATE
Start date:
05/11/2021
Due date:
% Done:
0%
Estimated time:
Description
Noticed this was incorrect when writing some os-detection userland code. Took the liberty to add some notes about the os flat number versioning scheme.
before : man 3 sysctl
KERN_OSRELDATE The system release date in YYYYMM format (January 1996 is encoded as 199601). KERN_OSREV The system revision string.
after : man 3 sysctl
KERN_OSRELDATE The same as ‘KERN_OSREV’. KERN_OSREV The system revision number in base-10 format Mmmmpp, representing the following components: Code Component M major mmm minor pp patch The minor component is an even-number for release and odd-number for development branches.
Files
Updated by swildner over 3 years ago
- Status changed from New to Resolved
I've pushed it with some minor adjustments:
https://gitweb.dragonflybsd.org/dragonfly.git/commitdiff/7affb00f15f3b1d3c1493363a613e50d5f91776c
Thanks!
Actions