Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

linux-raspberrypi: Enable NFSv4 config #891

Merged
2 commits merged into from
Jul 12, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,17 @@ BALENA_CONFIGS[rtrpi300cfgs] = " \
CONFIG_CH432T_SPI=m \
"

BALENA_CONFIGS:append = " nfsfs"
BALENA_CONFIGS[nfsfs] = " \
CONFIG_NFS_FS=m \
CONFIG_NFS_V2=y \
CONFIG_NFS_V3=y \
CONFIG_NFS_V4=y \
CONFIG_NFSD=m \
CONFIG_NFSD_V3=y \
CONFIG_NFSD_V4=y \
"

# The Pi3-64 and Pi4-64 are the only boards very low on rootfs space for now
# so we add this as per https://github.com/balena-os/meta-balena/pull/2411
BALENA_CONFIGS:append:raspberrypi4-64 = " optimize-size"
Expand Down