Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1238871
| Path | csiph.com!eternal-september.org!feeder.eternal-september.org!aioe.org!bofh.it!news.nic.it!robomod |
|---|---|
| From | Alexander Kapshuk <alexander.kapshuk@gmail.com> |
| Newsgroups | linux.kernel |
| Subject | [PATCH 7/24] ver_linux: module-init-tools.patch |
| Date | Sat, 03 Oct 2015 15:30:02 +0200 |
| Message-ID | <qfv2W-33F-3@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=iDhtpaMz4Q2F90v03rufC+u/ZR7fwkwA+KZ+owb9Iu4=; b=tbqorJlKHdHEAGxrGufjl2BjQAC3irrVK9v0KCnA8ZEkOEIu8no8s77sTFLE/RfBRB b5xxgSKMtmKyecL6e95OpPjoydzjlRNBFZvvaeseeBSZquL1Yd2UxZfa+k3Vk37penn7 PrYU5xfu0yCSKc+GE6ZgNczUlsJ7AWcsMkpy9VZykv5/evRnHGsJLaB40Hsx1x+NJxVI o7GOym/NlDX0lzC28vJXSls5Vz2xUsPK8GR58k+29qOQB3WQ98av92tEJeh3LCk7rPPF QnvFB5Qqv6wP+knfSktAX/uFBIu7WTpdrtTmo60q32Lx4L6UeiqdmIxsLrcBaJ9A8Avb 1oIw== |
| X-Received | by 10.112.126.195 with SMTP id na3mr7756432lbb.50.1443878505266; Sat, 03 Oct 2015 06:21:45 -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 | 40 |
| Organization | linux.* mail to news gateway |
| X-Original-Cc | Greg KH <gregkh@linuxfoundation.org> |
| X-Original-Date | Sat, 3 Oct 2015 16:21:05 +0300 |
| X-Original-Message-ID | <CAJ1xhMU0=n_uut5p+JPseAkKMcjcgyq1y1RJg8xjQwzYUxz7Tg@mail.gmail.com> |
| X-Original-Sender | linux-kernel-owner@vger.kernel.org |
| Xref | csiph.com linux.kernel:1238871 |
Show key headers only | View raw
The current implementation relies on 'depmod' to be available in the
PATH. It also expects the version number to be found in the last field
as seen by 'awk'. Should the output format be different, this approach
would no longer be reliable.
The proposed implementation locates 'depmod', and uses 'sed' as a more
flexible tool to handle varying output formats.
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:51:33.132170687 +0300
@@ -25,7 +25,13 @@
echo -n "mount "
mount --version | awk '{print $NF}' | sed -e s/^mount-// -e s/\)$//
-depmod -V 2>&1 | awk 'NR==1 {print "module-init-tools ",$NF}'
+test -x "$depmod" &&
+$depmod -V 2>&1 |
+sed '
+ /[0-9]$/!d
+ s/[^0-9\.]//g
+ s/^/module-init-tools\t/
+'
tune2fs 2>&1 | grep "^tune2fs" | sed 's/,//' | awk \
'NR==1 {print "e2fsprogs ", $2}'
--
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 | Find similar | Unroll thread
[PATCH 7/24] ver_linux: module-init-tools.patch Alexander Kapshuk <alexander.kapshuk@gmail.com> - 2015-10-03 15:30 +0200
csiph-web