Changeset b2a0f6dd in mainline


Ignore:
Timestamp:
2007-10-30T22:19:58Z (16 years ago)
Author:
Josef Cejka <malyzelenyhnus@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
fa23560
Parents:
dbe8a8f
Message:

Better fix of labels in configuration script.

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • kernel/kernel.config

    rdbe8a8f rb2a0f6dd  
    6666
    6767# Framebuffer width
    68 @ "640" 640
    69 @ "800" 800
    70 @ "1024" 1024
    71 @ "1152" 1152
    72 @ "1280" 1280
    73 @ "1400" 1400
    74 @ "1440" 1440
    75 @ "1600" 1600
    76 @ "2048" 2048
     68@ "640"
     69@ "800"
     70@ "1024"
     71@ "1152"
     72@ "1280"
     73@ "1400"
     74@ "1440"
     75@ "1600"
     76@ "2048"
    7777! [(ARCH=ia32|ARCH=amd64)&CONFIG_FB=y] CONFIG_VESA_WIDTH (choice)
    7878
    7979# Framebuffer height
    80 @ "480" 480
    81 @ "600" 600
    82 @ "768" 768
    83 @ "852" 852
    84 @ "900" 900
    85 @ "960" 960
    86 @ "1024" 1024
    87 @ "1050" 1050
    88 @ "1200" 1200
    89 @ "1536" 1536
     80@ "480"
     81@ "600"
     82@ "768"
     83@ "852"
     84@ "900"
     85@ "960"
     86@ "1024"
     87@ "1050"
     88@ "1200"
     89@ "1536"
    9090! [(ARCH=ia32|ARCH=amd64)&CONFIG_FB=y] CONFIG_VESA_HEIGHT (choice)
    9191
    9292# Framebuffer depth
    93 @ "8" 8
    94 @ "16" 16
    95 @ "24" 24
     93@ "8"
     94@ "16"
     95@ "24"
    9696! [(ARCH=ia32|ARCH=amd64)&CONFIG_FB=y] CONFIG_VESA_BPP (choice)
    9797
  • tools/config.py

    rdbe8a8f rb2a0f6dd  
    7474        sys.stdout.write('%s:\n' % text)
    7575        for i,(text,descr) in enumerate(choices):
    76             sys.stdout.write('\t%2d. %s\n' % (i, descr))
     76            if descr is '':
     77                sys.stdout.write('\t%2d. %s\n' % (i, text))
     78            else:
     79                sys.stdout.write('\t%2d. %s\n' % (i, descr))
    7780        if defopt is not None:
    7881            sys.stdout.write('Enter choice number[%d]: ' % defopt)
Note: See TracChangeset for help on using the changeset viewer.