diff options
author | Oleg Verych <olecom@flower.upol.cz> | 2007-02-05 20:18:20 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-02-06 17:30:49 -0500 |
commit | f6112ec27a8f0eee6c5a996f65c7bfd9457d9f85 (patch) | |
tree | 0ff6c1f02ae272d675a8d96123bf2dc581331a01 /scripts/gen_initramfs_list.sh | |
parent | 62d0cfcb27cf755cebdc93ca95dabc83608007cd (diff) |
[PATCH] kbuild scripts: replace gawk, head, bc with shell, update
Replacing overhead of using some (external) programs
instead of good old `sh'.
Cc: Roman Zippel <zippel@linux-m68k.org>
Cc: Sam Ravnborg <sam@ravnborg.org>
Cc: William Stearns <wstearns@pobox.com>
Cc: Martin Schlemmer <azarah@nosferatu.za.org>
Signed-off-by: Oleg Verych <olecom@flower.upol.cz>
Acked-by: Mark Lord <lkml@rtr.ca>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'scripts/gen_initramfs_list.sh')
-rw-r--r-- | scripts/gen_initramfs_list.sh | 43 |
1 files changed, 22 insertions, 21 deletions
diff --git a/scripts/gen_initramfs_list.sh b/scripts/gen_initramfs_list.sh index 4c723fd18648..43f75d6e4d96 100644 --- a/scripts/gen_initramfs_list.sh +++ b/scripts/gen_initramfs_list.sh | |||
@@ -1,6 +1,6 @@ | |||
1 | #!/bin/bash | 1 | #!/bin/bash |
2 | # Copyright (C) Martin Schlemmer <azarah@nosferatu.za.org> | 2 | # Copyright (C) Martin Schlemmer <azarah@nosferatu.za.org> |
3 | # Copyright (c) 2006 Sam Ravnborg <sam@ravnborg.org> | 3 | # Copyright (C) 2006 Sam Ravnborg <sam@ravnborg.org> |
4 | # | 4 | # |
5 | # Released under the terms of the GNU GPL | 5 | # Released under the terms of the GNU GPL |
6 | # | 6 | # |
@@ -17,15 +17,15 @@ cat << EOF | |||
17 | Usage: | 17 | Usage: |
18 | $0 [-o <file>] [-u <uid>] [-g <gid>] {-d | <cpio_source>} ... | 18 | $0 [-o <file>] [-u <uid>] [-g <gid>] {-d | <cpio_source>} ... |
19 | -o <file> Create gzipped initramfs file named <file> using | 19 | -o <file> Create gzipped initramfs file named <file> using |
20 | gen_init_cpio and gzip | 20 | gen_init_cpio and gzip |
21 | -u <uid> User ID to map to user ID 0 (root). | 21 | -u <uid> User ID to map to user ID 0 (root). |
22 | <uid> is only meaningful if <cpio_source> | 22 | <uid> is only meaningful if <cpio_source> |
23 | is a directory. | 23 | is a directory. |
24 | -g <gid> Group ID to map to group ID 0 (root). | 24 | -g <gid> Group ID to map to group ID 0 (root). |
25 | <gid> is only meaningful if <cpio_source> | 25 | <gid> is only meaningful if <cpio_source> |
26 | is a directory. | 26 | is a directory. |
27 | <cpio_source> File list or directory for cpio archive. | 27 | <cpio_source> File list or directory for cpio archive. |
28 | If <cpio_source> is a .cpio file it will be used | 28 | If <cpio_source> is a .cpio file it will be used |
29 | as direct input to initramfs. | 29 | as direct input to initramfs. |
30 | -d Output the default cpio list. | 30 | -d Output the default cpio list. |
31 | 31 | ||
@@ -36,6 +36,12 @@ to reset the root/group mapping. | |||
36 | EOF | 36 | EOF |
37 | } | 37 | } |
38 | 38 | ||
39 | # awk style field access | ||
40 | # $1 - field number; rest is argument string | ||
41 | field() { | ||
42 | shift $1 ; echo $1 | ||
43 | } | ||
44 | |||
39 | list_default_initramfs() { | 45 | list_default_initramfs() { |
40 | # echo usr/kinit/kinit | 46 | # echo usr/kinit/kinit |
41 | : | 47 | : |
@@ -119,22 +125,17 @@ parse() { | |||
119 | str="${ftype} ${name} ${location} ${str}" | 125 | str="${ftype} ${name} ${location} ${str}" |
120 | ;; | 126 | ;; |
121 | "nod") | 127 | "nod") |
122 | local dev_type= | 128 | local dev=`LC_ALL=C ls -l "${location}"` |
123 | local maj=$(LC_ALL=C ls -l "${location}" | \ | 129 | local maj=`field 5 ${dev}` |
124 | gawk '{sub(/,/, "", $5); print $5}') | 130 | local min=`field 6 ${dev}` |
125 | local min=$(LC_ALL=C ls -l "${location}" | \ | 131 | maj=${maj%,} |
126 | gawk '{print $6}') | 132 | |
127 | 133 | [ -b "${location}" ] && dev="b" || dev="c" | |
128 | if [ -b "${location}" ]; then | 134 | |
129 | dev_type="b" | 135 | str="${ftype} ${name} ${str} ${dev} ${maj} ${min}" |
130 | else | ||
131 | dev_type="c" | ||
132 | fi | ||
133 | str="${ftype} ${name} ${str} ${dev_type} ${maj} ${min}" | ||
134 | ;; | 136 | ;; |
135 | "slink") | 137 | "slink") |
136 | local target=$(LC_ALL=C ls -l "${location}" | \ | 138 | local target=`field 11 $(LC_ALL=C ls -l "${location}")` |
137 | gawk '{print $11}') | ||
138 | str="${ftype} ${name} ${target} ${str}" | 139 | str="${ftype} ${name} ${target} ${str}" |
139 | ;; | 140 | ;; |
140 | *) | 141 | *) |