svn commit: r363595 - head/sys/kern

Kyle Evans kevans at FreeBSD.org
Mon Jul 27 03:13:24 UTC 2020


Author: kevans
Date: Mon Jul 27 03:13:23 2020
New Revision: 363595
URL: https://svnweb.freebsd.org/changeset/base/363595

Log:
  makesyscalls.sh: spit out a deprecation notice to stderr
  
  This has for a while been replaced by makesyscalls.lua in the stock FreeBSD
  build.  Ensure downstreams get some notice that it'a going away if they're
  reliant on it, maybe.

Modified:
  head/sys/kern/makesyscalls.sh

Modified: head/sys/kern/makesyscalls.sh
==============================================================================
--- head/sys/kern/makesyscalls.sh	Mon Jul 27 01:53:27 2020	(r363594)
+++ head/sys/kern/makesyscalls.sh	Mon Jul 27 03:13:23 2020	(r363595)
@@ -60,6 +60,8 @@ case $# in
 	;;
 esac
 
+1>&2 echo "$0: This script is deprecated and will be removed before FreeBSD 13."
+
 if [ -n "$2" ]; then
 	. "$2"
 fi


More information about the svn-src-head mailing list