blob: c5213c23142fad9ff3a3d0e7e9e00b0e2a725abe (
plain)
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
|
# petitboot package config
config PETITBOOT_GUI
bool "Enable Graphical UI support"
depends on PACKAGE_petitboot
select PACKAGE_libtwin
default y
help
Enable support a petitboot graphical front end based on
the twin windowing package.
config PETITBOOT_CUI
bool "Enable Command-line UI support"
depends on PACKAGE_petitboot
select PACKAGE_libncurses
default y
help
Enable support a petitboot command-line front end based on
the ncurses package.
config PETITBOOT_DEBUG
bool "Build debug versions of petitboot binaries"
depends on PACKAGE_petitboot
default n
help
Enable additional petitboot runtime checks and debug messages.
config PETITBOOT_PS3
bool "Build in extra support for the PS3 game console"
depends on PACKAGE_petitboot
default n
help
Enable additional petitboot runtime checks and debug messages.
choice
prompt "Startup behavior"
default PETITBOOT_AUTORUN_GUI
depends on PETITBOOT_GUI || PETITBOOT_CUI
config PETITBOOT_AUTORUN_GUI
bool "Auto run Petitboot GUI"
depends on PETITBOOT_GUI
help
Automatically run Petitboot in graphical mode at
system startup. Note that the Petitboot program has a menu item
'Exit to Shell' that can be used to exit the program when
it is running.
config PETITBOOT_AUTORUN_CUI
bool "Auto run Petitboot CUI"
depends on PETITBOOT_CUI
help
Automatically run Petitboot in command-line mode at system
startup. Note that the Petitboot program has a menu item
'Exit to Shell' that can be used to exit the program when
it is running.
config PETITBOOT_AUTORUN_NONE
bool "Disable Petitboot auto run"
help
Disable Petitboot from running automatically at system startup.
The system will boot into a shell. Petitboot can still be run
manually from the shell prompt when this option is selected.
endchoice
|