On 2021-Feb-17, at 01:29, Hans Petter Selasky <hps at selasky.org> wrote: > On 2/17/21 1:58 AM, Mark Millard via freebsd-current wrote: >> stand/kshim/bsd_kernel.h has its own define of __FreeBSD_version and >> seems to have last had it changed in the main branch as shown below. >> Is it as it should be for main 14? It does seem to have skipped >> being updated for HEAD 12. >> Last change . . . >> author Hans Petter Selasky <hselasky_at_FreeBSD.org> 2020-11-18 13:22:22 +0000 >> committer Hans Petter Selasky <hselasky_at_FreeBSD.org> 2020-11-18 13:22:22 +0000 >> commit a2dd1caade2f9cb829261a42812431781c685d46 (patch) >> tree 466a86138a99f5f6c73c54cd531dbdb9884678c0 /stand/kshim/bsd_kernel.h >> parent ac8c4a61af5007487eabf882e969dd9768549078 (diff) >> download src-a2dd1caade2f9cb829261a42812431781c685d46.tar.gz >> src-a2dd1caade2f9cb829261a42812431781c685d46.zip >> Fix build of USB bootloader code by adding checks for _STANDALONE being defined. >> Currently the USB bootloader code is not part of buildworld. >> MFC after: 1 week >> Sponsored by: Mellanox Technologies // NVIDIA Networking >> Notes >> Notes: >> svn path=/head/; revision=367787 >> Diffstat (limited to 'stand/kshim/bsd_kernel.h') >> -rw-r--r-- stand/kshim/bsd_kernel.h 7 >> 1 files changed, 5 insertions, 2 deletions >> diff --git a/stand/kshim/bsd_kernel.h b/stand/kshim/bsd_kernel.h >> index 4dfe307fef0c..89d87121c63e 100644 >> --- a/stand/kshim/bsd_kernel.h >> +++ b/stand/kshim/bsd_kernel.h >> _at__at_ -27,9 +27,12 _at__at_ >> #ifndef _BSD_KERNEL_H_ >> #define _BSD_KERNEL_H_ >> -#define _KERNEL >> +#if !defined(_STANDALONE) >> +#error "_STANDALONE is not defined!" >> +#endif >> + >> #undef __FreeBSD_version >> -#define __FreeBSD_version 1100000 >> +#define __FreeBSD_version 1300000 >> #include <sys/cdefs.h> >> #include <sys/queue.h> > > Yes, please bump, though not critical. I'm not a committer. === Mark Millard marklmi at yahoo.com ( dsl-only.net went away in early 2018-Mar)Received on Wed Feb 17 2021 - 14:33:48 UTC
This archive was generated by hypermail 2.4.0 : Wed May 19 2021 - 11:41:27 UTC