diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2012-05-28 09:25:17 +0200 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2012-05-28 09:25:17 +0200 |
commit | 8a1e83823de62f55ac06f4a67452ee7cc1ce3ace (patch) | |
tree | 9fc699c036519693d6fd0a8c35d2f006abeae733 /package/busybox/busybox-1.20.0/busybox-1.20.0-getty.patch | |
parent | 7643670052a7adc1c2a5f275664774c6d50e6a3d (diff) | |
download | buildroot-novena-8a1e83823de62f55ac06f4a67452ee7cc1ce3ace.tar.gz buildroot-novena-8a1e83823de62f55ac06f4a67452ee7cc1ce3ace.zip |
busybox: bump 1.20.x version
Bugfix release.
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/busybox/busybox-1.20.0/busybox-1.20.0-getty.patch')
-rw-r--r-- | package/busybox/busybox-1.20.0/busybox-1.20.0-getty.patch | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/package/busybox/busybox-1.20.0/busybox-1.20.0-getty.patch b/package/busybox/busybox-1.20.0/busybox-1.20.0-getty.patch deleted file mode 100644 index ed52159ff..000000000 --- a/package/busybox/busybox-1.20.0/busybox-1.20.0-getty.patch +++ /dev/null @@ -1,17 +0,0 @@ ---- busybox-1.20.0/loginutils/getty.c -+++ busybox-1.20.0-getty/loginutils/getty.c -@@ -561,8 +561,14 @@ int getty_main(int argc UNUSED_PARAM, ch - */ - fd = open("/dev/tty", O_RDWR | O_NONBLOCK); - if (fd >= 0) { -+ /* TIOCNOTTY sends SIGHUP to the foreground -+ * process group - which may include us! -+ * Make sure to not die on it: -+ */ -+ sighandler_t old = signal(SIGHUP, SIG_IGN); - ioctl(fd, TIOCNOTTY); - close(fd); -+ signal(SIGHUP, old); - } - } - |