mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-25 00:57:31 +02:00
add cifs, disable smbfs
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@413 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
769b5d80fe
commit
534bac6fae
@ -36,11 +36,11 @@ config BR2_PACKAGE_KMOD_NFS
|
|||||||
Kernel modules for NFS support
|
Kernel modules for NFS support
|
||||||
Includes lockd, nfs and sunrpc
|
Includes lockd, nfs and sunrpc
|
||||||
|
|
||||||
config BR2_PACKAGE_KMOD_SMBFS
|
config BR2_PACKAGE_KMOD_CIFS
|
||||||
tristate "SMB support"
|
tristate "CIFS support"
|
||||||
default m
|
default m
|
||||||
help
|
help
|
||||||
Kernel modules for SMB support
|
Kernel modules for CIFS support
|
||||||
|
|
||||||
config BR2_PACKAGE_KMOD_USB
|
config BR2_PACKAGE_KMOD_USB
|
||||||
tristate "USB/SCSI support"
|
tristate "USB/SCSI support"
|
||||||
|
@ -53,9 +53,9 @@ $(eval $(call KMOD_template,IPT6,ip6tables,\
|
|||||||
$(eval $(call KMOD_template,IPV6,ipv6,\
|
$(eval $(call KMOD_template,IPV6,ipv6,\
|
||||||
$(MODULES_DIR)/kernel/net/ipv6/ipv6.o \
|
$(MODULES_DIR)/kernel/net/ipv6/ipv6.o \
|
||||||
,CONFIG_IPV6))
|
,CONFIG_IPV6))
|
||||||
$(eval $(call KMOD_template,SMBFS,smbfs,\
|
$(eval $(call KMOD_template,CIFS,cifs,\
|
||||||
$(MODULES_DIR)/kernel/fs/smbfs/smbfs.o \
|
$(MODULES_DIR)/kernel/fs/cifs/cifs.o \
|
||||||
,CONFIG_SMB_FS))
|
,CONFIG_CIFS))
|
||||||
$(eval $(call KMOD_template,NFS,nfs,\
|
$(eval $(call KMOD_template,NFS,nfs,\
|
||||||
$(MODULES_DIR)/kernel/fs/lockd/*.o \
|
$(MODULES_DIR)/kernel/fs/lockd/*.o \
|
||||||
$(MODULES_DIR)/kernel/fs/nfs/*.o \
|
$(MODULES_DIR)/kernel/fs/nfs/*.o \
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
Package: kmod-smbfs
|
Package: kmod-cifs
|
||||||
Priority: optional
|
Priority: optional
|
||||||
Section: sys
|
Section: sys
|
||||||
Version: 2.4.29-1
|
Version: 2.4.29-1
|
||||||
Architecture: mipsel
|
Architecture: mipsel
|
||||||
Maintainer: Felix Fietkau <nbd@vd-s.ath.cx>
|
Maintainer: Felix Fietkau <nbd@vd-s.ath.cx>
|
||||||
Source: buildroot internal
|
Source: buildroot internal
|
||||||
Description: Kernel modules for SMB support
|
Description: Kernel modules for CIFS support
|
BIN
openwrt/package/linux/kernel-patches/305-cifs-1.20c.bz2
Normal file
BIN
openwrt/package/linux/kernel-patches/305-cifs-1.20c.bz2
Normal file
Binary file not shown.
@ -891,9 +891,10 @@ CONFIG_NFS_V3=y
|
|||||||
CONFIG_SUNRPC=m
|
CONFIG_SUNRPC=m
|
||||||
CONFIG_LOCKD=m
|
CONFIG_LOCKD=m
|
||||||
CONFIG_LOCKD_V4=y
|
CONFIG_LOCKD_V4=y
|
||||||
CONFIG_SMB_FS=m
|
CONFIG_CIFS=m
|
||||||
# CONFIG_SMB_NLS_DEFAULT is not set
|
# CONFIG_CIFS_STATS is not set
|
||||||
# CONFIG_SMB_UNIX is not set
|
CONFIG_CIFS_POSIX=y
|
||||||
|
# CONFIG_SMB_FS is not set
|
||||||
# CONFIG_NCP_FS is not set
|
# CONFIG_NCP_FS is not set
|
||||||
# CONFIG_NCPFS_PACKET_SIGNING is not set
|
# CONFIG_NCPFS_PACKET_SIGNING is not set
|
||||||
# CONFIG_NCPFS_IOCTL_LOCKING is not set
|
# CONFIG_NCPFS_IOCTL_LOCKING is not set
|
||||||
@ -924,7 +925,7 @@ CONFIG_MSDOS_PARTITION=y
|
|||||||
# CONFIG_ULTRIX_PARTITION is not set
|
# CONFIG_ULTRIX_PARTITION is not set
|
||||||
# CONFIG_SUN_PARTITION is not set
|
# CONFIG_SUN_PARTITION is not set
|
||||||
# CONFIG_EFI_PARTITION is not set
|
# CONFIG_EFI_PARTITION is not set
|
||||||
CONFIG_SMB_NLS=y
|
# CONFIG_SMB_NLS is not set
|
||||||
CONFIG_NLS=y
|
CONFIG_NLS=y
|
||||||
|
|
||||||
#
|
#
|
||||||
|
@ -112,4 +112,6 @@ linux-dirclean:
|
|||||||
rm -rf $(LINUX_DIR)-$(LINUX_VERSION)
|
rm -rf $(LINUX_DIR)-$(LINUX_VERSION)
|
||||||
rm -rf $(LINUX_DIR)
|
rm -rf $(LINUX_DIR)
|
||||||
rm -rf $(BUILD_DIR)/modules
|
rm -rf $(BUILD_DIR)/modules
|
||||||
|
rm -rf $(BUILD_DIR)/wl
|
||||||
|
rm -rf $(BUILD_DIR)/et
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user