summaryrefslogtreecommitdiff
path: root/usr.sbin/hostctl
AgeCommit message (Collapse)Author
2023-01-07The maximum length of the value is extended to 64k bytes.ASOU Masato
ok yasuoka
2019-06-28When system calls indicate an error they return -1, not some arbitraryTheo de Raadt
value < 0. errno is only updated in this case. Change all (most?) callers of syscalls to follow this better, and let's see if this strictness helps us in the future.
2018-07-03hostctl: Don't crash if key is empty stringStefan Fritsch
ok reyk@
2017-07-21Stress the fact that individual pvbus device nodes correspond toMike Belopuhov
a single key-value store and if there are other ones available, different nodes must be used to access them.
2017-01-18Fixup a typo and provide an example for Hyper-VMike Belopuhov
2016-01-27- sort optionsJason McIntyre
- add -q to usage()
2016-01-27appease mandoc lint, no difference in outputJasper Lievisse Adriaanse
ok reyk@
2016-01-27Use "VIS_SAFE | VIS_CSTYLE" instead of "VIS_OCTAL" as the value canReyk Floeter
contain text files with whitespace, newlines and carriage returns.
2016-01-27Add hostctl(8), a tool to access key-value stores on the host,Reyk Floeter
currently for hypervisor information stores on pvbus(4). As discussed with deraadt@, the generic name is used to potentially extend it for other use cases where the host or machine firmware provides a key-value store, hypervisors or things like openprom. Not enabled yet. OK mikeb@