summaryrefslogtreecommitdiffstats
path: root/Documentation
Commit message (Collapse)AuthorAgeFilesLines
* TODO: fix typoSanchit Saini2019-06-211-1/+1
|
* docs: update v2.34-ReleaseNotesKarel Zak2019-06-141-0/+32
| | | | Signed-off-by: Karel Zak <kzak@redhat.com>
* docs: add lscpu --caches to ReleaseNotesKarel Zak2019-05-311-1/+2
| | | | Signed-off-by: Karel Zak <kzak@redhat.com>
* docs: update v2.34-ReleaseNotesKarel Zak2019-05-301-0/+133
| | | | Signed-off-by: Karel Zak <kzak@redhat.com>
* fstrim: affect only warnings by --quietKarel Zak2019-05-091-0/+4
| | | | | | | | We need the same return code from fstrim_filesystem() independently on --quiet command line option. Addresses: https://github.com/karelzak/util-linux/pull/791 Signed-off-by: Karel Zak <kzak@redhat.com>
* docs: update v2.34-ReleaseNotesKarel Zak2019-04-301-0/+427
| | | | Signed-off-by: Karel Zak <kzak@redhat.com>
* misc: consolidate version printing and close_stdout()Karel Zak2019-04-161-3/+2Star
| | | | Signed-off-by: Karel Zak <kzak@redhat.com>
* Merge branch 'spelling' of https://github.com/jwilk-forks/util-linuxKarel Zak2019-04-021-1/+1
|\ | | | | | | | | * 'spelling' of https://github.com/jwilk-forks/util-linux: docs: fix typo
| * docs: fix typoJakub Wilk2019-03-221-1/+1
| | | | | | | | Signed-off-by: Jakub Wilk <jwilk@jwilk.net>
* | lscpu: add --cachesKarel Zak2019-03-191-9/+0Star
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | $ lscpu -C NAME ONE-SIZE ALL-SIZE WAYS TYPE LEVEL L3 8M 8M 16 Unified 3 L2 256K 1M 8 Unified 2 L1i 32K 128K 8 Instruction 1 L1d 32K 128K 8 Data 1 The patch also updates extra caches (s390) output in lsblk summary to be compatible with output about normal caches. Addresses: https://github.com/karelzak/util-linux/issues/663 Signed-off-by: Karel Zak <kzak@redhat.com>
* | docs: TODO lscpu --list-cachesKarel Zak2019-03-181-0/+9
| | | | | | | | | | Addresses: https://github.com/karelzak/util-linux/issues/663 Signed-off-by: Karel Zak <kzak@redhat.com>
* | docs: add col(1) to TODOKarel Zak2019-02-051-0/+7
| | | | | | | | | | Addresses: https://github.com/karelzak/util-linux/issues/749 Signed-off-by: Karel Zak <kzak@redhat.com>
* | docs: update TODOKarel Zak2019-01-181-4/+0Star
| | | | | | | | Signed-off-by: Karel Zak <kzak@redhat.com>
* | libmount: add support for MS_REMOUNT on --allKarel Zak2019-01-161-5/+0Star
| | | | | | | | | | | | | | | | | | | | | | | | | | This patch add to support for remount-all operation to libmount and mount(8). For example: mount --all -o remount,ro -t vfat to remount read-only all VFAT filesystems. Addresses: https://github.com/karelzak/util-linux/issues/589 Signed-off-by: Karel Zak <kzak@redhat.com>
* | lsblk: add --mergeKarel Zak2018-12-071-16/+0Star
| | | | | | | | Signed-off-by: Karel Zak <kzak@redhat.com>
* | docs: add lsblk --merge to TODOKarel Zak2018-12-071-6/+16
| | | | | | | | Signed-off-by: Karel Zak <kzak@redhat.com>
* | docs: update v2.33-ReleaseNotesKarel Zak2018-11-061-0/+13
|/ | | | Signed-off-by: Karel Zak <kzak@redhat.com>
* docs: fix typosJakub Wilk2018-11-032-2/+2
| | | | Signed-off-by: Jakub Wilk <jwilk@jwilk.net>
* docs: add info about branches; update travis.ymlKarel Zak2018-10-241-0/+23
| | | | Signed-off-by: Karel Zak <kzak@redhat.com>
* docs: update v2.33-ReleaseNotesKarel Zak2018-10-191-0/+36
| | | | Signed-off-by: Karel Zak <kzak@redhat.com>
* docs: add getopt to TODOKarel Zak2018-10-041-0/+8
| | | | | Addresses: https://github.com/karelzak/util-linux/issues/701 Signed-off-by: Karel Zak <kzak@redhat.com>
* docs: update v2.33-ReleaseNotesKarel Zak2018-09-201-0/+565
| | | | Signed-off-by: Karel Zak <kzak@redhat.com>
* docs: remove obsolete entry from TODOKarel Zak2018-09-031-7/+0Star
| | | | | | Already implemented by commit cf654e1c3ec8f6f9ac93bf4f6981d560249868d9. Signed-off-by: Karel Zak <kzak@redhat.com>
* docs: add note about lsblk usage/free colsKarel Zak2018-08-241-0/+4
| | | | Signed-off-by: Karel Zak <kzak@redhat.com>
* docs: cleanup TODOKarel Zak2018-08-241-15/+11Star
| | | | Signed-off-by: Karel Zak <kzak@redhat.com>
* column: add --table-empty-linesKarel Zak2018-08-231-5/+0Star
| | | | | | | | | | | | | | | | | | | | | The option allows to add empty line to the table. The default behavior is to ignore empty lines at all. echo -e "A\nAA\nAAA\n\nAAAA" | ./column --table A AA AAA AAAA $ echo -e "A\nAA\nAAA\n\nAAAA" | ./column --table --table-empty-lines A AA AAA AAAA Addresses: https://github.com/karelzak/util-linux/issues/593 Signed-off-by: Karel Zak <kzak@redhat.com>
* docs: use SPDX license namesKarel Zak2018-08-164-0/+0
| | | | | | | | | | Let's use standardized names for licenses. The names used by SPDX makes things more obvious at first glance. For complete list see: https://spdx.org/licenses/ Note, this commit does not change any license or so... Signed-off-by: Karel Zak <kzak@redhat.com>
* libfdisk: Accept negative numbers for last sector inputAwal Garg2018-07-311-6/+0Star
| | | | | | | | [kzak@redhat.com: - add note to the man page - add '-' to the dialog query - cleanup functions names and libfdisk.sym] Signed-off-by: Karel Zak <kzak@redhat.com>
* docs: add note about --disable-all-programsKarel Zak2018-07-241-0/+19
| | | | | Addresses: https://github.com/karelzak/util-linux/issues/666 Signed-off-by: Karel Zak <kzak@redhat.com>
* hwclock: add --delay <seconds>Karel Zak2018-07-181-2/+0Star
| | | | | | | | | | | * add command line option --delay <seconds> * read RTC type from /sys/class/rtc/rtc<N>/name * default to 0.5 (500ms) for rtc_cmos or when RTC type is impossible determine; otherwise delay is 0. Signed-off-by: Karel Zak <kzak@redhat.com>
* docs: add fdisk to TODOKarel Zak2018-07-171-0/+7
| | | | Signed-off-by: Karel Zak <kzak@redhat.com>
* docs: add hwclock to TODOKarel Zak2018-07-171-0/+2
| | | | Signed-off-by: Karel Zak <kzak@redhat.com>
* docs: update TODOKarel Zak2018-06-221-14/+0Star
| | | | Signed-off-by: Karel Zak <kzak@redhat.com>
* docs: add note about lsblk to TODOKarel Zak2018-06-211-0/+9
| | | | Signed-off-by: Karel Zak <kzak@redhat.com>
* docs: update TODOKarel Zak2018-06-111-13/+0Star
| | | | Signed-off-by: Karel Zak <kzak@redhat.com>
* script: record exit codeKarel Zak2018-05-141-2/+0Star
| | | | Signed-off-by: Karel Zak <kzak@redhat.com>
* script: add more info to script headerKarel Zak2018-05-141-6/+0Star
| | | | | | | | | | | | | | | | This patch introduces [...] to store extra information about terminal to the typescript header. For example: Script started on 2018-05-14 12:52:32+02:00 [TERM="xterm-256color" TTY="/dev/pts/3" COLS="190" LINES="53"] or Script started on 2018-05-14 12:54:01+02:00 [<not executed on terminal>] if stdout is not terminal. Addresses: https://github.com/karelzak/util-linux/issues/583 Signed-off-by: Karel Zak <kzak@redhat.com>
* docs: add hint about scriptKarel Zak2018-05-141-0/+2
| | | | Signed-off-by: Karel Zak <kzak@redhat.com>
* choom: new command to adjust OOM-killer score valueKarel Zak2018-04-161-5/+0Star
| | | | | | | | | Let's provide command line tool, man page with OOM description and bash-completion. It seems better than force end-users to use "echo" to /proc. Addresses: https://github.com/karelzak/util-linux/issues/609 Signed-off-by: Karel Zak <kzak@redhat.com>
* docs: update TODO (libblkid)Karel Zak2018-04-091-4/+3Star
| | | | | Addresses: https://github.com/karelzak/util-linux/issues/617 Signed-off-by: Karel Zak <kzak@redhat.com>
* docs: update TODO (lsblk)Karel Zak2018-04-091-13/+4Star
| | | | | | | * remove NVMe-multipath lsblk issue (already fixed by kernel) * add lsblk rewrite Signed-off-by: Karel Zak <kzak@redhat.com>
* libsmartcols: improve JSON support (add types)Karel Zak2018-04-031-7/+0Star
| | | | | | | This commit add SCOLS_JSON_{NUMBER,STRING,BOOLEAN} to specify column type for JSON output formatting. Signed-off-by: Karel Zak <kzak@redhat.com>
* docs: add choom to TODOKarel Zak2018-03-271-0/+5
| | | | | Addresses: https://github.com/karelzak/util-linux/issues/609 Signed-off-by: Karel Zak <kzak@redhat.com>
* docs: add cal(1) TODO itemsKarel Zak2018-03-271-0/+7
| | | | Signed-off-by: Karel Zak <kzak@redhat.com>
* column: fix leading space characters bugKarel Zak2018-03-271-3/+0Star
| | | | | | | | | | | | | | | | | | The bug has been introduced during column(1) rewrite. The function read_input() need to skip leading space only temporary to detect empty lines, but the rest of the code has to use the original buffer (line). I've tried to fix one of the symptoms by 5c7b67fbbf41c973ca8d49b1e8bdba22dbb917aa (alter), but this solution is unnecessary and too complex. Changes: * don't ignore leading space * remove unnecessary stuff introduced by 5c7b67fbbf41c973ca8d49b1e8bdba22dbb917aa * fix regression test with incorrect separator Addresses: https://github.com/karelzak/util-linux/issues/575 Addresses: https://bugzilla.redhat.com/show_bug.cgi?id=1560283 Signed-off-by: Karel Zak <kzak@redhat.com>
* docs: add to column(1) TODOKarel Zak2018-03-261-0/+3
| | | | Signed-off-by: Karel Zak <kzak@redhat.com>
* docs: update v2.32-ReleaseNotesKarel Zak2018-03-211-3/+51
| | | | Signed-off-by: Karel Zak <kzak@redhat.com>
* docs: add new idea to TODO listKarel Zak2018-03-091-0/+5
| | | | | Addresses: https://github.com/karelzak/util-linux/issues/593 Signed-off-by: Karel Zak <kzak@redhat.com>
* docs: add remount-all idea to TODOKarel Zak2018-03-081-14/+6Star
| | | | Signed-off-by: Karel Zak <kzak@redhat.com>
* docs: add script(1) events idea to TODOKarel Zak2018-03-051-0/+20
| | | | | Addresses: https://github.com/karelzak/util-linux/issues/583 Signed-off-by: Karel Zak <kzak@redhat.com>