diff options
author | Michael Prokop <mika@grml.org> | 2007-09-05 22:22:20 +0200 |
---|---|---|
committer | maximilian attems <max@stro.at> | 2007-09-05 22:22:20 +0200 |
commit | fd0b67f392bc351dacf6b29532fc478d1ff9f118 (patch) | |
tree | 866620fd1f306845c06aaa2257d063bc31be8a26 /scripts | |
parent | 803cf67dabfe32516f2ed08ba76dc9de7f9311cb (diff) | |
download | initramfs-tools-fd0b67f392bc351dacf6b29532fc478d1ff9f118.tar.gz initramfs-tools-fd0b67f392bc351dacf6b29532fc478d1ff9f118.zip |
scripts/init-top/framebuffer: fix variable name
s/fbnum/fbno/
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/init-top/framebuffer | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/init-top/framebuffer b/scripts/init-top/framebuffer index 9292024..2427b47 100755 --- a/scripts/init-top/framebuffer +++ b/scripts/init-top/framebuffer @@ -88,7 +88,7 @@ fi if [ -e /proc/fb ]; then while read fbno desc; do - if [ $(($fbnum < 32)) ]; then + if [ $(($fbno < 32)) ]; then mknod /dev/fb${fbno} c 29 ${fbno} fi done < /proc/fb |