Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1238873
| Path | csiph.com!goblin3!goblin2!goblin.stu.neva.ru!aioe.org!bofh.it!news.nic.it!robomod |
|---|---|
| From | Alexander Kapshuk <alexander.kapshuk@gmail.com> |
| Newsgroups | linux.kernel |
| Subject | [PATCH 8/24] ver_linux: e2fsprogs.patch |
| Date | Sat, 03 Oct 2015 15:30:02 +0200 |
| Message-ID | <qfv2W-33F-9@gated-at.bofh.it> (permalink) |
| X-Original-To | linux-kernel <linux-kernel@vger.kernel.org> |
| Dkim-Signature | v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:from:date:message-id:subject:to:cc:content-type; bh=fG3KoJgq6G5zGyHVhbuxxgvo4WePYkuIsxj5I/NIr/s=; b=02r03pRMGwJFSybZqXvBltCifXz/WaXp8i2sSpPZpLXvLBGHDXuRwhOy7K+zKkJ2Oy AbgTJ5gAxf9SlgNNgogGF3bSIQ2oy6qsuJaNTSBDWRFu3c8m/krwBVfMJVNM/QDUSTXg C3KAqQk3tF8W+nNeRHilk6RXzd5iMpl5MBqAuPdXSSb062m3ioYhBdaFOyeZ90o3W6tO Q786XQLiNqgHFREkowvUp/Y+S07fP6fn6RMBeWKIZkylFvzaBCDbB5uyrXMtfnT+vywY GE9V6ZCj2A+PBdmelxIxh/MhhOslm0t2WKcL6jwLQ2iSgD4VJgVMTwsHlkpwfnbLCUGp ISXA== |
| X-Received | by 10.25.143.73 with SMTP id r70mr5006228lfd.108.1443878621730; Sat, 03 Oct 2015 06:23:41 -0700 (PDT) |
| MIME-Version | 1.0 |
| Content-Type | text/plain; charset=UTF-8 |
| Sender | robomod@news.nic.it |
| List-ID | <linux-kernel.vger.kernel.org> |
| X-Mailing-List | linux-kernel@vger.kernel.org |
| Approved | robomod@news.nic.it |
| Lines | 42 |
| Organization | linux.* mail to news gateway |
| X-Original-Cc | Greg KH <gregkh@linuxfoundation.org> |
| X-Original-Date | Sat, 3 Oct 2015 16:23:02 +0300 |
| X-Original-Message-ID | <CAJ1xhMUJtNB3idq9bVAJKW9k3Y756oz3GK79PmestVB_UV3TJQ@mail.gmail.com> |
| X-Original-Sender | linux-kernel-owner@vger.kernel.org |
| Xref | csiph.com linux.kernel:1238873 |
Show key headers only | View raw
'tune2fs' is located in varying places depending on the distro.
Current implementation output on distros where 'tune2fs' is found at
a location that is not available in the PATH for the regular user,
e.g. '/sbin', will have nothing to display.
While running 'ver_linux' as user 'root' should be OK.
Proposed implementation, makes provision for locating 'tune2fs', making
it more reliable across the various distros.
Tested on:
Gentoo Linux
Debian 6.0.10
Oracle Linux Server release 7.1
Arch Linux
openSuSE 13.2
Signed-off-by: Alexander Kapshuk <alexander.kapshuk@gmail.com>
---
--- linux/scripts/ver_linux.orig 2015-10-03 13:41:57.118790241 +0300
+++ linux/scripts/ver_linux 2015-10-03 13:52:04.635699263 +0300
@@ -27,8 +27,14 @@
depmod -V 2>&1 | awk 'NR==1 {print "module-init-tools ",$NF}'
-tune2fs 2>&1 | grep "^tune2fs" | sed 's/,//' | awk \
-'NR==1 {print "e2fsprogs ", $2}'
+test -x "$tune2fs" &&
+$tune2fs 2>&1 |
+sed '
+ /^tune2fs/!d
+ s/-.*//
+ s/[^0-9\.]*//
+ s/.*[ \t]\(.*\)[ \t].*/e2fsprogs\t\t\1/
+'
fsck.jfs -V 2>&1 | grep version | sed 's/,//' | awk \
'NR==1 {print "jfsutils ", $3}'
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH 8/24] ver_linux: e2fsprogs.patch Alexander Kapshuk <alexander.kapshuk@gmail.com> - 2015-10-03 15:30 +0200
Re: [PATCH 8/24] ver_linux: e2fsprogs.patch Theodore Ts'o <tytso@mit.edu> - 2015-10-04 03:50 +0200
Re: [PATCH 8/24] ver_linux: e2fsprogs.patch Alexander Kapshuk <alexander.kapshuk@gmail.com> - 2015-10-04 14:10 +0200
csiph-web