xref: /OK3568_Linux_fs/buildroot/package/frecon/Config.in (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyunconfig BR2_PACKAGE_FRECON
2*4882a593Smuzhiyun	bool "frecon"
3*4882a593Smuzhiyun	depends on BR2_INSTALL_LIBSTDCPP
4*4882a593Smuzhiyun	depends on BR2_PACKAGE_HAS_UDEV
5*4882a593Smuzhiyun	select BR2_PACKAGE_LIBDRM
6*4882a593Smuzhiyun	select BR2_PACKAGE_LIBPNG
7*4882a593Smuzhiyun	select BR2_PACKAGE_LIBTSM
8*4882a593Smuzhiyun	help
9*4882a593Smuzhiyun	  This is a terminal emulator that replaces the kernel Virtual
10*4882a593Smuzhiyun	  Terminal (VT) console.  It uses the Kernel Mode Setting (KMS)
11*4882a593Smuzhiyun	  support in the kernel.  It is similar to the kmscon project:
12*4882a593Smuzhiyun            https://www.freedesktop.org/wiki/Software/kmscon
13*4882a593Smuzhiyun
14*4882a593Smuzhiyunif BR2_PACKAGE_FRECON
15*4882a593Smuzhiyun
16*4882a593Smuzhiyunconfig BR2_PACKAGE_FRECON_USE_GETTY
17*4882a593Smuzhiyun	bool "use getty"
18*4882a593Smuzhiyun	default n if BR2_TARGET_SERIAL_SHELL_SH
19*4882a593Smuzhiyun
20*4882a593Smuzhiyunconfig BR2_PACKAGE_FRECON_VTS
21*4882a593Smuzhiyun	bool "enable vts"
22*4882a593Smuzhiyun	default y
23*4882a593Smuzhiyun
24*4882a593Smuzhiyunconfig BR2_PACKAGE_FRECON_VT1
25*4882a593Smuzhiyun	bool "enable vt1"
26*4882a593Smuzhiyun	default y if !BR2_PACKAGE_WESTON && !BR2_PACKAGE_XORG7
27*4882a593Smuzhiyun
28*4882a593Smuzhiyunconfig BR2_PACKAGE_FRECON_ROTATE
29*4882a593Smuzhiyun	int
30*4882a593Smuzhiyun	default 90 if BR2_PACKAGE_FRECON_ROTATE_90
31*4882a593Smuzhiyun	default 180 if BR2_PACKAGE_FRECON_ROTATE_180
32*4882a593Smuzhiyun	default 270 if BR2_PACKAGE_FRECON_ROTATE_270
33*4882a593Smuzhiyun
34*4882a593Smuzhiyunchoice
35*4882a593Smuzhiyun        prompt "frecon rotate"
36*4882a593Smuzhiyun        default BR2_PACKAGE_FRECON_ROTATE_0
37*4882a593Smuzhiyun
38*4882a593Smuzhiyunconfig BR2_PACKAGE_FRECON_ROTATE_0
39*4882a593Smuzhiyun        bool "0"
40*4882a593Smuzhiyun
41*4882a593Smuzhiyunconfig BR2_PACKAGE_FRECON_ROTATE_90
42*4882a593Smuzhiyun        bool "90"
43*4882a593Smuzhiyun
44*4882a593Smuzhiyunconfig BR2_PACKAGE_FRECON_ROTATE_180
45*4882a593Smuzhiyun        bool "180"
46*4882a593Smuzhiyun
47*4882a593Smuzhiyunconfig BR2_PACKAGE_FRECON_ROTATE_270
48*4882a593Smuzhiyun        bool "270"
49*4882a593Smuzhiyun
50*4882a593Smuzhiyunendchoice
51*4882a593Smuzhiyun
52*4882a593Smuzhiyunconfig BR2_PACKAGE_FRECON_SCALE
53*4882a593Smuzhiyun	int "frecon scale"
54*4882a593Smuzhiyun	range 1 100
55*4882a593Smuzhiyun
56*4882a593Smuzhiyunendif
57