diff options
| author | kaloz <kaloz@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2011-03-02 14:20:51 +0000 | 
|---|---|---|
| committer | kaloz <kaloz@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2011-03-02 14:20:51 +0000 | 
| commit | 2a953e1969c9202ee2a593245176acadc696d4ba (patch) | |
| tree | 354147a1d54c7195d5cf9a21074ab79e101478da | |
| parent | 92b82debd220bd25f0bf2d0024d0f6f8fce23825 (diff) | |
[package/dropbear]: upgrade to 0.53.1
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25830 3c298f89-4303-0410-b956-a3cf2f4a3e73
| -rw-r--r-- | package/dropbear/Makefile | 9 | ||||
| -rw-r--r-- | package/dropbear/patches/110-change_user.patch | 6 | ||||
| -rw-r--r-- | package/dropbear/patches/120-use_small_code.patch | 11 | ||||
| -rw-r--r-- | package/dropbear/patches/130-ssh_ignore_o_and_x_args.patch | 4 | 
4 files changed, 21 insertions, 9 deletions
diff --git a/package/dropbear/Makefile b/package/dropbear/Makefile index bb1230cef..9c6a2a2f2 100644 --- a/package/dropbear/Makefile +++ b/package/dropbear/Makefile @@ -8,14 +8,14 @@  include $(TOPDIR)/rules.mk  PKG_NAME:=dropbear -PKG_VERSION:=0.52 -PKG_RELEASE:=5 +PKG_VERSION:=0.53.1 +PKG_RELEASE:=1  PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz  PKG_SOURCE_URL:= \  	http://matt.ucc.asn.au/dropbear/releases/ \  	http://www.mirrors.wiretapped.net/security/cryptography/apps/ssh/dropbear/ -PKG_MD5SUM:=1c69ec674481d7745452f68f2ea5597e +PKG_MD5SUM:=6b8d901859d9b8a18e2f6bfe0a892a03  PKG_BUILD_PARALLEL:=1 @@ -63,7 +63,8 @@ CONFIGURE_ARGS += \  	--disable-loginfunc \  	--disable-pututline \  	--disable-pututxline \ -	--disable-zlib +	--disable-zlib \ +	--enable-bundled-libtom  TARGET_CFLAGS += -DARGTYPE=3 -ffunction-sections -fdata-sections  TARGET_LDFLAGS += -Wl,--gc-sections diff --git a/package/dropbear/patches/110-change_user.patch b/package/dropbear/patches/110-change_user.patch index 964229bd7..f003c276c 100644 --- a/package/dropbear/patches/110-change_user.patch +++ b/package/dropbear/patches/110-change_user.patch @@ -1,6 +1,6 @@  --- a/svr-chansession.c  +++ b/svr-chansession.c -@@ -852,12 +852,12 @@ static void execchild(void *user_data) { +@@ -881,12 +881,12 @@ static void execchild(void *user_data) {   	/* We can only change uid/gid as root ... */   	if (getuid() == 0) { @@ -9,10 +9,10 @@   			(initgroups(ses.authstate.pw_name,   -						ses.authstate.pw_gid) < 0)) {  +						ses.authstate.pw_gid) < 0))) { - 			dropbear_exit("error changing user group"); + 			dropbear_exit("Error changing user group");   		}  -		if (setuid(ses.authstate.pw_uid) < 0) {  +		if ((ses.authstate.pw_uid != 0) && (setuid(ses.authstate.pw_uid) < 0)) { - 			dropbear_exit("error changing user"); + 			dropbear_exit("Error changing user");   		}   	} else { diff --git a/package/dropbear/patches/120-use_small_code.patch b/package/dropbear/patches/120-use_small_code.patch new file mode 100644 index 000000000..98a760fab --- /dev/null +++ b/package/dropbear/patches/120-use_small_code.patch @@ -0,0 +1,11 @@ +--- a/options.h ++++ b/options.h +@@ -49,7 +49,7 @@ + several kB in binary size however will make the symmetrical ciphers and hashes + slower, perhaps by 50%. Recommended for small systems that aren't doing + much traffic. */ +-/*#define DROPBEAR_SMALL_CODE*/ ++#define DROPBEAR_SMALL_CODE +  + /* Enable X11 Forwarding - server only */ + #define ENABLE_X11FWD diff --git a/package/dropbear/patches/130-ssh_ignore_o_and_x_args.patch b/package/dropbear/patches/130-ssh_ignore_o_and_x_args.patch index 7c4306c36..93647a99e 100644 --- a/package/dropbear/patches/130-ssh_ignore_o_and_x_args.patch +++ b/package/dropbear/patches/130-ssh_ignore_o_and_x_args.patch @@ -1,6 +1,6 @@  --- a/cli-runopts.c  +++ b/cli-runopts.c -@@ -271,6 +271,10 @@ void cli_getopts(int argc, char ** argv) +@@ -287,6 +287,10 @@ void cli_getopts(int argc, char ** argv)   					debug_trace = 1;   					break;   #endif @@ -11,7 +11,7 @@   				case 'F':   				case 'e':   				case 'c': -@@ -282,7 +286,6 @@ void cli_getopts(int argc, char ** argv) +@@ -298,7 +302,6 @@ void cli_getopts(int argc, char ** argv)   #ifndef ENABLE_CLI_LOCALTCPFWD   				case 'L':   #endif  | 
