summaryrefslogtreecommitdiffstats
path: root/initramfs/preboot/mconf_examples
blob: 2a391b49d3ce4ebe15a527d47d2d9912c8ff29a4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144

# drivers/Kconfig
#

mainmenu "OpenSLX Client Configuration"

# keine Ahnung was das kann
#config DEFCONFIG_LIST
#        string
#        depends on !UML
#        option defconfig_list
#        default "/lib/modules/$UNAME_RELEASE/.config"
#        default "/etc/kernel-config"
#        default "/boot/config-$UNAME_RELEASE"
#        default "arch/$ARCH/defconfig"

menu "User Configuration"

config ucfg_root_enabled
  bool "Enable administrator account (root) for login."
  default y
  help
    Allow to login as system administrator to your OpenSLX client. You should
    set a password then.

    If unsure, say N.

config ucfg_root_password
    string "root password"
    depends on ucfg_root_enabled
    default "OpEnSlX"
    help
      Define a password for the system administrator (root) of your OpenSLX
      client.

comment "First Standard User"

config ucfg_standard_user
    default y
    bool "Define a standard user with normal priviledges."
    help
      This allows you to define a normal user to be configured on your OpenSLX
      client. Logging on using this user gives you standard experience with in
      the several environments.

      If you are unsure about this, Say Y here.

config ucfg_stduser_name
    string "name of standard user"
    depends on ucfg_standard_user
    default "openslx"
    help
      Define an account name for the first standard user of your system.

config ucfg_stduser_password
    string "password of standard user"
    depends on ucfg_standard_user
    default "change_it"
    help
      Please change the predefined password!

comment "Further Standard Users"

config ucfg_second_user
    default n
    bool "Define a second user with normal priviledges if you like."
    help
      This allows you to define an additional user to be configured on your 
      OpenSLX client. Same priviledges like the standard user.

      If you are unsure about this, Say N here.

config ucfg_secuser_name
    string "name of standard user"
    depends on ucfg_second_user
    default "second"
    help
      Define an account name for the second standard user of your system.

config ucfg_secuser_password
    string "password of second user"
    depends on ucfg_second_user
    default "change_it_too"
    help
      Please change the predefined password!

config ucfg_third_user
    default n
    bool "Define a third user with normal priviledges if you like."
    help
      This allows you to define an additional user to be configured on your 
      OpenSLX client. Same priviledges like the standard user.

      If you are unsure about this, Say N here.

config ucfg_thduser_name
    string "name of standard user"
    depends on ucfg_third_user
    default "third"
    help
      Define an account name for the second standard user of your system.

config ucfg_thduser_password
    string "password of second user"
    depends on ucfg_third_user
    default "change_it_too"
    help
      Please change the predefined password!

config RT_MUTEXES
        boolean
        select PLIST

endmenu

choice
        prompt "Subarchitecture Type"
        default X86_PC

config X86_PC
        bool "PC-compatible"
        help
          Choose this option if your computer is a standard PC or compatible.

config X86_XEN
        bool "Xen-compatible"
        depends on X86_32
        select SYS_HYPERVISOR
        help
          Choose this option if you plan to run this kernel on top of the
          Xen Hypervisor.

config X86_ELAN
        bool "AMD Elan"
        depends on X86_32
        help
          Select this for an AMD Elan processor.

          Do not use this option for K6/Athlon/Opteron processors!

          If unsure, choose "PC-compatible" instead.

endchoice