forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty-2.6
* git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty-2.6: TTY: move .gitignore from drivers/char/ to drivers/tty/vt/ TTY: create drivers/tty/vt and move the vt code there TTY: create drivers/tty and move the tty core files there
- Loading branch information
Showing
27 changed files
with
47 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
obj-y += tty_io.o n_tty.o tty_ioctl.o tty_ldisc.o \ | ||
tty_buffer.o tty_port.o tty_mutex.o | ||
obj-$(CONFIG_LEGACY_PTYS) += pty.o | ||
obj-$(CONFIG_UNIX98_PTYS) += pty.o | ||
obj-$(CONFIG_AUDIT) += tty_audit.o | ||
obj-$(CONFIG_MAGIC_SYSRQ) += sysrq.o | ||
obj-$(CONFIG_N_HDLC) += n_hdlc.o | ||
obj-$(CONFIG_N_GSM) += n_gsm.o | ||
obj-$(CONFIG_R3964) += n_r3964.o | ||
|
||
obj-y += vt/ |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# | ||
# This file contains the font map for the default (hardware) font | ||
# | ||
FONTMAPFILE = cp437.uni | ||
|
||
obj-$(CONFIG_VT) += vt_ioctl.o vc_screen.o \ | ||
selection.o keyboard.o | ||
obj-$(CONFIG_CONSOLE_TRANSLATIONS) += consolemap.o consolemap_deftbl.o | ||
obj-$(CONFIG_HW_CONSOLE) += vt.o defkeymap.o | ||
|
||
# Files generated that shall be removed upon make clean | ||
clean-files := consolemap_deftbl.c defkeymap.c | ||
|
||
quiet_cmd_conmk = CONMK $@ | ||
cmd_conmk = scripts/conmakehash $< > $@ | ||
|
||
$(obj)/consolemap_deftbl.c: $(src)/$(FONTMAPFILE) | ||
$(call cmd,conmk) | ||
|
||
$(obj)/defkeymap.o: $(obj)/defkeymap.c | ||
|
||
# Uncomment if you're changing the keymap and have an appropriate | ||
# loadkeys version for the map. By default, we'll use the shipped | ||
# versions. | ||
# GENERATE_KEYMAP := 1 | ||
|
||
ifdef GENERATE_KEYMAP | ||
|
||
$(obj)/defkeymap.c: $(obj)/%.c: $(src)/%.map | ||
loadkeys --mktable $< > $@.tmp | ||
sed -e 's/^static *//' $@.tmp > $@ | ||
rm $@.tmp | ||
|
||
endif |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.