add missing codepages, add syslog support and use it by default
SVN-Revision: 1996
This commit is contained in:
parent
3b387dea5c
commit
1f809d2cf0
3 changed files with 4 additions and 2 deletions
|
@ -119,6 +119,7 @@ $(PKG_BUILD_DIR)/.built:
|
||||||
$(DISABLE_NLS) \
|
$(DISABLE_NLS) \
|
||||||
--with-lockdir=/var/run/samba \
|
--with-lockdir=/var/run/samba \
|
||||||
--with-privatedir=/etc/samba \
|
--with-privatedir=/etc/samba \
|
||||||
|
--with-syslog \
|
||||||
);
|
);
|
||||||
$(MAKE) -C $(PKG_BUILD_DIR)/source \
|
$(MAKE) -C $(PKG_BUILD_DIR)/source \
|
||||||
$(TARGET_CONFIGURE_OPTS) \
|
$(TARGET_CONFIGURE_OPTS) \
|
||||||
|
@ -160,6 +161,7 @@ $(IPKG_SAMBA):
|
||||||
install -m0755 $(PKG_BUILD_DIR)/source/bin/smbd.shared $(IDIR_SAMBA)/usr/sbin/smbd
|
install -m0755 $(PKG_BUILD_DIR)/source/bin/smbd.shared $(IDIR_SAMBA)/usr/sbin/smbd
|
||||||
install -d -m0755 $(IDIR_SAMBA)/usr/share/samba
|
install -d -m0755 $(IDIR_SAMBA)/usr/share/samba
|
||||||
install -m0644 $(PKG_INSTALL_DIR)/usr/share/samba/codepage.{437,850} $(IDIR_SAMBA)/usr/share/samba/
|
install -m0644 $(PKG_INSTALL_DIR)/usr/share/samba/codepage.{437,850} $(IDIR_SAMBA)/usr/share/samba/
|
||||||
|
install -m0644 $(PKG_INSTALL_DIR)/usr/share/samba/unicode_map.{437,850} $(IDIR_SAMBA)/usr/share/samba/
|
||||||
$(RSTRIP) $(IDIR_SAMBA)
|
$(RSTRIP) $(IDIR_SAMBA)
|
||||||
$(IPKG_BUILD) $(IDIR_SAMBA) $(PACKAGE_DIR)
|
$(IPKG_BUILD) $(IDIR_SAMBA) $(PACKAGE_DIR)
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
DEFAULT=/etc/default/samba
|
DEFAULT=/etc/default/samba
|
||||||
LOG_D=/var/log/samba
|
|
||||||
RUN_D=/var/run/samba
|
RUN_D=/var/run/samba
|
||||||
NMBD_PID_F=$RUN_D/nmbd.pid
|
NMBD_PID_F=$RUN_D/nmbd.pid
|
||||||
SMBD_PID_F=$RUN_D/smbd.pid
|
SMBD_PID_F=$RUN_D/smbd.pid
|
||||||
|
@ -9,7 +8,6 @@ SMBD_PID_F=$RUN_D/smbd.pid
|
||||||
|
|
||||||
case $1 in
|
case $1 in
|
||||||
start)
|
start)
|
||||||
mkdir -p $LOG_D
|
|
||||||
mkdir -p $RUN_D
|
mkdir -p $RUN_D
|
||||||
nmbd -D $NMBD_OPTIONS
|
nmbd -D $NMBD_OPTIONS
|
||||||
smbd -D $SMBD_OPTIONS
|
smbd -D $SMBD_OPTIONS
|
||||||
|
|
|
@ -1,4 +1,6 @@
|
||||||
[global]
|
[global]
|
||||||
|
syslog = 0
|
||||||
|
syslog only = yes
|
||||||
workgroup = OpenWrt
|
workgroup = OpenWrt
|
||||||
security = share
|
security = share
|
||||||
guest account = nobody
|
guest account = nobody
|
||||||
|
|
Loading…
Reference in a new issue