kernel,initrd: add CIFS to the kernel and cifs-utils to the initrd

Needed to enable SMB/CIFS mounts on Windows hosts

Signed-off-by: Rolf Neugebauer <rolf.neugebauer@docker.com>
This commit is contained in:
Rolf Neugebauer 2016-02-02 16:24:36 -08:00
parent bcf2cd851d
commit 73a0d1671e
2 changed files with 6 additions and 2 deletions

View File

@ -16,7 +16,8 @@ RUN \
bind-tools \ bind-tools \
openssh-client \ openssh-client \
strace fuse \ strace fuse \
util-linux util-linux \
cifs-utils
COPY etc /etc/ COPY etc /etc/
RUN mkdir -p /etc/docker RUN mkdir -p /etc/docker

View File

@ -2533,7 +2533,10 @@ CONFIG_NETWORK_FILESYSTEMS=y
# CONFIG_NFS_FS is not set # CONFIG_NFS_FS is not set
# CONFIG_NFSD is not set # CONFIG_NFSD is not set
# CONFIG_CEPH_FS is not set # CONFIG_CEPH_FS is not set
# CONFIG_CIFS is not set CONFIG_CIFS=y
CONFIG_CIFS_XATTR=y
CONFIG_CIFS_POSIX=y
CONFIG_CIFS_SMB2=y
# CONFIG_NCP_FS is not set # CONFIG_NCP_FS is not set
# CONFIG_CODA_FS is not set # CONFIG_CODA_FS is not set
# CONFIG_AFS_FS is not set # CONFIG_AFS_FS is not set