diff options
author | Bill Nottingham <notting@redhat.com> | 2008-03-10 22:37:35 -0400 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2008-03-10 22:37:35 -0400 |
commit | 5d38179c29282bca01a53480ce9c5ac7cf25fbc4 (patch) | |
tree | ccdad221b44b589376a7a81ba8d528e231e16b77 /src/Makefile | |
parent | d30faf7315a91a380760c36f198f3f684c3600d9 (diff) | |
download | initscripts-5d38179c29282bca01a53480ce9c5ac7cf25fbc4.tar initscripts-5d38179c29282bca01a53480ce9c5ac7cf25fbc4.tar.gz initscripts-5d38179c29282bca01a53480ce9c5ac7cf25fbc4.tar.bz2 initscripts-5d38179c29282bca01a53480ce9c5ac7cf25fbc4.tar.xz initscripts-5d38179c29282bca01a53480ce9c5ac7cf25fbc4.zip |
Add a helper that checks for serial and serial-like consoles
This works by doing checks from udev that emit upstart events. upstart
listens to these events and starts a getty if needed.
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile index 5c23a8fe..887e2373 100644 --- a/src/Makefile +++ b/src/Makefile @@ -2,7 +2,7 @@ CFLAGS+=$(RPM_OPT_FLAGS) -Wall -D_GNU_SOURCE PROGS=usernetctl doexec netreport testd usleep ipcalc initlog \ fstab-decode getkey ppp-watch consoletype genhostid rename_device \ - console_init + console_init console_check PPPWATCH_OBJS=ppp-watch.o shvar.o CONSOLE_INIT_OBJS=console_init.o shvar.o INITLOG_OBJS=initlog.o process.o @@ -30,6 +30,7 @@ install: install -m 755 consoletype $(ROOT)/sbin/consoletype install -m 755 rename_device $(ROOT)/lib/udev/rename_device install -m 755 console_init $(ROOT)/lib/udev/console_init + install -m 755 console_check $(ROOT)/lib/udev/console_check install -m 755 ccw_init $(ROOT)/lib/udev/ccw_init install -m 644 initlog.1 $(ROOT)$(mandir)/man1 install -m 644 genhostid.1 $(ROOT)$(mandir)/man1 |