diff options
-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 |