svn commit: r340649 - head/usr.bin/fortune/datfiles

Benedict Reuschling bcr at FreeBSD.org
Mon Nov 19 20:45:50 UTC 2018


Author: bcr (doc committer)
Date: Mon Nov 19 20:45:49 2018
New Revision: 340649
URL: https://svnweb.freebsd.org/changeset/base/340649

Log:
  Add a fortune describing how to upload a machine's dmesg information to the
  NYCBUG database.
  
  We want to encourage our users to upload their dmesgs so that the project can
  get a better insight into what kind of hardware is run on. This helps in making
  data-driven decisions about i.e., platform and driver support.
  
  Note that dmesgs may contain sensitive information like hardware serial numbers,
  hence uploading them without review is discouraged.
  
  Reviewed by:		brooks, imp, allanjude
  Approved by:		allanjude
  MFC after:		5 days
  Differential Revision:	https://reviews.freebsd.org/D17705

Modified:
  head/usr.bin/fortune/datfiles/freebsd-tips

Modified: head/usr.bin/fortune/datfiles/freebsd-tips
==============================================================================
--- head/usr.bin/fortune/datfiles/freebsd-tips	Mon Nov 19 19:05:07 2018	(r340648)
+++ head/usr.bin/fortune/datfiles/freebsd-tips	Mon Nov 19 20:45:49 2018	(r340649)
@@ -554,3 +554,9 @@ Use "sysrc name=value" to add an entry and "sysrc -x n
 
 		-- Lars Engels <lme at FreeBSD.org>
 %
+You can upload the dmesg of your system to help developers get an overview of commonly used hardware and peripherals for FreeBSD.
+Use the curl package to upload it in one command:
+curl -v -d "nickname=$USER" -d "description=FreeBSD/$(uname -m) on \
+$(kenv smbios.system.maker) $(kenv smbios.system.product)" -d "do=addd" \
+--data-urlencode 'dmesg@/var/run/dmesg.boot' http://dmesgd.nycbug.org/index.cgi
+%


More information about the svn-src-all mailing list