Skip to content

Commit

Permalink
Kernel 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
Tobias Waldvogel committed Apr 30, 2013
1 parent 6bfc8aa commit 749f613
Show file tree
Hide file tree
Showing 9 changed files with 519 additions and 6 deletions.
File renamed without changes.
471 changes: 471 additions & 0 deletions samba4/815-smb2-recvfile.patch

Large diffs are not rendered by default.

File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion samba4/Makefile
Expand Up @@ -8,7 +8,7 @@
include $(TOPDIR)/rules.mk

PKG_NAME:=samba
PKG_VERSION:=4.0.4
PKG_VERSION:=4.0.5
PKG_RELEASE:=1

PKG_SOURCE_URL:=http://ftp.samba.org/pub/samba \
Expand Down
2 changes: 1 addition & 1 deletion samba4/patches/100-configure_fixes.patch
@@ -1,6 +1,6 @@
--- a/source3/configure 2012-12-30 20:35:33.727515216 +0100
+++ b/source3/configure 2012-12-30 20:36:33.365798707 +0100
@@ -14443,10 +14443,7 @@
@@ -14564,10 +14564,7 @@
# see bug 5910, use our replacements if we detect
# a broken system.
if test "$cross_compiling" = yes; then :
Expand Down
6 changes: 3 additions & 3 deletions samba4/patches/200-remove_printer_support.patch
Expand Up @@ -81,7 +81,7 @@
d_printf(_("Usage:\n"));
--- a/source3/smbd/reply.c
+++ b/source3/smbd/reply.c
@@ -5426,7 +5426,11 @@ void reply_printopen(struct smb_request
@@ -5459,7 +5459,11 @@ void reply_printopen(struct smb_request
return;
}

Expand All @@ -94,7 +94,7 @@
reply_nterror(req, NT_STATUS_ACCESS_DENIED);
END_PROFILE(SMBsplopen);
return;
@@ -5532,7 +5536,10 @@ void reply_printqueue(struct smb_request
@@ -5565,7 +5569,10 @@ void reply_printqueue(struct smb_request
is really quite gross and only worked when there was only
one printer - I think we should now only accept it if they
get it right (tridge) */
Expand Down Expand Up @@ -305,7 +305,7 @@
}
--- a/source3/smbd/process.c
+++ b/source3/smbd/process.c
@@ -2622,8 +2622,10 @@ static bool housekeeping_fn(const struct
@@ -2627,8 +2627,10 @@ static bool housekeeping_fn(const struct

change_to_root_user();

Expand Down
@@ -1,6 +1,6 @@
--- a/source3/param/loadparm.c 2012-07-29 02:30:28.218743520 +0200
+++ b/source3/param/loadparm.c 2012-07-29 02:42:44.818657559 +0200
@@ -5506,3 +5506,17 @@
@@ -5507,3 +5507,17 @@
return lp_find_security(lp__server_role(),
lp__security());
}
Expand Down
42 changes: 42 additions & 0 deletions unison/Makefile
@@ -0,0 +1,42 @@
#
# Copyright (C) 2009-2011 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#

include $(TOPDIR)/rules.mk

PKG_NAME:=unison
PKG_VERSION:=2.40.102
PKG_RELEASE:=1

PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=http://www.seas.upenn.edu/~bcpierce/unison//download/releases/stable/

include $(INCLUDE_DIR)/package.mk

#EXTRA_LDFLAGS += -Wl,-rpath-link=$(STAGING_DIR)/usr/lib

#CONFIGURE_ARGS += --enable-gettext=no

define Package/unison
SECTION:=utilities
CATEGORY:=Utilities
TITLE:=Unison file synchronizer
URL:=http://www.cis.upenn.edu/~bcpierce/unison/
# DEPENDS:=
endef

define Build/compile
(cd $PKG_BUILD_DIR; make UISTYLE=text NATIVE=false)
endef

define Package/unison/install
$(INSTALL_DIR) $(1)/usr/bin
$(INSTALL_BIN) $(PKG_BUILD_DIR)/chunison/.libs/chunison $(1)/usr/bin
$(INSTALL_BIN) $(PKG_BUILD_DIR)/getfunison/.libs/getfunison $(1)/usr/bin
$(INSTALL_BIN) $(PKG_BUILD_DIR)/setfunison/.libs/setfunison $(1)/usr/bin
endef

$(eval $(call BuildPackage,unison))

0 comments on commit 749f613

Please sign in to comment.