Move libteken out of the syscons directory.
I initially committed libteken to sys/dev/syscons/teken, but now that I'm working on a console driver myself, I noticed this was not a good decision. Move it to sys/teken to make it easier for other drivers to use a terminal emulator. Also list teken.c in sys/conf/files, instead of listing it in all the files.arch files separately.
This commit is contained in:
parent
a34292623f
commit
9b934d0930
@ -91,8 +91,8 @@ pccarddevs.h standard \
|
||||
no-obj no-implicit-rule before-depend \
|
||||
clean "pccarddevs.h"
|
||||
teken_state.h optional sc \
|
||||
dependency "$S/dev/syscons/teken/gensequences $S/dev/syscons/teken/sequences" \
|
||||
compile-with "${AWK} -f $S/dev/syscons/teken/gensequences $S/dev/syscons/teken/sequences > teken_state.h" \
|
||||
dependency "$S/teken/gensequences $S/teken/sequences" \
|
||||
compile-with "${AWK} -f $S/teken/gensequences $S/teken/sequences > teken_state.h" \
|
||||
no-obj no-implicit-rule before-depend \
|
||||
clean "teken_state.h"
|
||||
usbdevs.h optional usb \
|
||||
@ -2616,6 +2616,7 @@ security/mac_portacl/mac_portacl.c optional mac_portacl
|
||||
security/mac_seeotheruids/mac_seeotheruids.c optional mac_seeotheruids
|
||||
security/mac_stub/mac_stub.c optional mac_stub
|
||||
security/mac_test/mac_test.c optional mac_test
|
||||
teken/teken.c optional sc
|
||||
ufs/ffs/ffs_alloc.c optional ffs
|
||||
ufs/ffs/ffs_balloc.c optional ffs
|
||||
ufs/ffs/ffs_inode.c optional ffs
|
||||
|
@ -219,7 +219,6 @@ dev/syscons/apm/apm_saver.c optional apm_saver apm
|
||||
dev/syscons/scterm-teken.c optional sc
|
||||
dev/syscons/scvgarndr.c optional sc vga
|
||||
dev/syscons/scvtb.c optional sc
|
||||
dev/syscons/teken/teken.c optional sc
|
||||
dev/uart/uart_cpu_amd64.c optional uart
|
||||
dev/wpi/if_wpi.c optional wpi
|
||||
isa/atrtc.c standard
|
||||
|
@ -220,7 +220,6 @@ dev/syscons/scterm-teken.c optional sc
|
||||
dev/syscons/scvesactl.c optional sc vga vesa
|
||||
dev/syscons/scvgarndr.c optional sc vga
|
||||
dev/syscons/scvtb.c optional sc
|
||||
dev/syscons/teken/teken.c optional sc
|
||||
dev/uart/uart_cpu_i386.c optional uart
|
||||
dev/acpica/acpi_if.m standard
|
||||
dev/acpi_support/acpi_wmi_if.m standard
|
||||
|
@ -60,7 +60,6 @@ dev/kbd/kbd.c optional atkbd | sc | ukbd | usb2_input_kbd
|
||||
dev/syscons/scterm-teken.c optional sc
|
||||
dev/syscons/scvgarndr.c optional sc vga
|
||||
dev/syscons/scvtb.c optional sc
|
||||
dev/syscons/teken/teken.c optional sc
|
||||
dev/uart/uart_cpu_ia64.c optional uart
|
||||
dev/acpica/acpi_if.m standard
|
||||
ia64/acpica/OsdEnvironment.c optional acpi
|
||||
|
@ -48,7 +48,6 @@ dev/sound/macio/tumbler.c optional snd_ai2s iicbus powermac
|
||||
dev/syscons/scgfbrndr.c optional sc
|
||||
dev/syscons/scterm-teken.c optional sc
|
||||
dev/syscons/scvtb.c optional sc
|
||||
dev/syscons/teken/teken.c optional sc
|
||||
dev/tsec/if_tsec.c optional tsec
|
||||
dev/tsec/if_tsec_ocp.c optional tsec mpc85xx
|
||||
dev/uart/uart_bus_ocp.c optional uart mpc85xx
|
||||
|
@ -57,7 +57,6 @@ dev/sound/sbus/cs4231.c optional snd_audiocs ebus | \
|
||||
dev/syscons/scgfbrndr.c optional sc
|
||||
dev/syscons/scterm-teken.c optional sc
|
||||
dev/syscons/scvtb.c optional sc
|
||||
dev/syscons/teken/teken.c optional sc
|
||||
dev/uart/uart_cpu_sparc64.c optional uart
|
||||
dev/uart/uart_kbd_sun.c optional uart sc
|
||||
kern/syscalls.c optional ktr
|
||||
|
@ -46,7 +46,7 @@ __FBSDID("$FreeBSD$");
|
||||
|
||||
#include <dev/syscons/syscons.h>
|
||||
|
||||
#include <dev/syscons/teken/teken.h>
|
||||
#include <teken/teken.h>
|
||||
|
||||
static void scteken_revattr(unsigned char, teken_attr_t *);
|
||||
static unsigned int scteken_attr(const teken_attr_t *);
|
||||
|
Loading…
x
Reference in New Issue
Block a user