Changeset 3390

Show
Ignore:
Timestamp:
08/02/07 16:30:59 (1 year ago)
Author:
tg
Message:

drain output before flushing, so that the banner will
always be shown in its entirety… (cosmetics, but might
make ssh logins more awful since you get to not type
until after chkuterm is done, unless you pass the env
var LC_CTYPE via ssh env passing)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/freewrt/package/busybox/Makefile

    r3372 r3390  
    99PKG_NAME:=              busybox 
    1010PKG_VERSION:=           1.4.2 
    11 PKG_RELEASE:=           26 
     11PKG_RELEASE:=           27 
    1212PKG_MD5SUM:=            b4c61fb15642be9dde20e8493788c585 
    1313DISTFILES:=             $(PKG_NAME)-$(PKG_VERSION).tar.bz2 
  • trunk/freewrt/package/busybox/patches/100-chkuterm.patch

    r3374 r3390  
    2727 lib-$(CONFIG_DEALLOCVT)                += deallocvt.o 
    2828--- busybox-1.4.2.orig/console-tools/chkuterm.c 1970-01-01 00:00:00.000000000 +0100 
    29 +++ busybox-1.4.2/console-tools/chkuterm.c      2007-08-01 16:25:08.000000000 +0200 
    30 @@ -0,0 +1,129 @@ 
     29+++ busybox-1.4.2/console-tools/chkuterm.c      2007-08-02 16:25:45.000000000 +0200 
     30@@ -0,0 +1,130 @@ 
    3131+/* From: $MirOS: ports/sysutils/chkuterm/dist/chkuterm.c,v 1.11 2007/05/10 13:02:22 tg Exp $ */ 
    3232+ 
     
    8888+       wsf = fdopen(wsfd, "rb+"); 
    8989+ 
     90+       tcdrain(wsfd); 
    9091+       if (tcgetattr(wsfd, &otio)) 
    9192+               err(3, "tcgetattr");