diff options
author | Benedict Reuschling <bcr@FreeBSD.org> | 2018-11-19 20:45:49 +0000 |
---|---|---|
committer | Benedict Reuschling <bcr@FreeBSD.org> | 2018-11-19 20:45:49 +0000 |
commit | fd91f859346eaa58f83419db2ec3b3216021ab4a (patch) | |
tree | a453c188453457aff06881ef5c24f7d222657e5a /usr.bin/fortune/datfiles/freebsd-tips | |
parent | 3b7e9bfef4c707ec2a57a0435c1de0503f6d37be (diff) |
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
Notes
Notes:
svn path=/head/; revision=340649
Diffstat (limited to 'usr.bin/fortune/datfiles/freebsd-tips')
-rw-r--r-- | usr.bin/fortune/datfiles/freebsd-tips | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/usr.bin/fortune/datfiles/freebsd-tips b/usr.bin/fortune/datfiles/freebsd-tips index e8800c6e8d57..5f05b4ede86f 100644 --- a/usr.bin/fortune/datfiles/freebsd-tips +++ b/usr.bin/fortune/datfiles/freebsd-tips @@ -554,3 +554,9 @@ Use "sysrc name=value" to add an entry and "sysrc -x name" to delete an entry. -- Lars Engels <lme@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 +% |