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