Enable modprobe zfs by running depmod on the new kernel build.

Depmod in the zfs makefiles will never run as `/boot/` and relevant map files dont exist in our build environments.
Included style suggestions by @rn

Signed-off-by: Matt Johnson <matjohn2@cisco.com>
This commit is contained in:
Matt Johnson 2017-09-15 16:50:25 +01:00
parent 0968be802f
commit fdc1c0edc8

View File

@ -8,7 +8,7 @@ RUN apk add \
build-base \
file \
git \
libtirpc-dev \
libtirpc-dev \
libtool \
util-linux-dev \
zlib-dev
@ -52,6 +52,10 @@ RUN ./autogen.sh && \
make -j "$(getconf _NPROCESSORS_ONLN)" && \
make install
# Run depmod against the new module directory.
RUN cd /lib/modules && \
depmod -ae *
FROM scratch
ENTRYPOINT []
CMD []