From: bugzilla at busybox.net <bugzilla@busybox.net>
To: buildroot@busybox.net
Subject: [Buildroot] [Bug 11876] New: automount using host mount/umount
Date: Tue, 14 May 2019 18:51:59 +0000 [thread overview]
Message-ID: <bug-11876-163@https.bugs.busybox.net/> (raw)
https://bugs.busybox.net/show_bug.cgi?id=11876
Bug ID: 11876
Summary: automount using host mount/umount
Product: buildroot
Version: 2019.02.2
Hardware: All
OS: Linux
Status: NEW
Severity: normal
Priority: P5
Component: Other
Assignee: unassigned at buildroot.uclibc.org
Reporter: todd.valentic at gmail.com
CC: buildroot at uclibc.org
Target Milestone: ---
In buildroot, the autofs package is finding the path to the host
mount/umount/fsck programs instead of the locations on the target in the
autoconf stage. These paths are used by automount and therefore fail to mount
when running on the target. You can see the this by looking at the autoconf
output puts in config.log or include/config.h for the values of the PATH_MOUNT
variables.
The autofs.mk file mentions this problem with modprobe but doesn't set the path
for the other programs. The solution is to add the target paths to
AUTOFS_CONF_ENV in autofs.mk:
# autofs looks on the build machine for the path of modprobe, so tell
# it explicitly where it will be located on the target.
AUTOFS_CONF_ENV = \
ac_cv_path_KRB5_CONFIG=no \
ac_cv_path_MODPROBE=/sbin/modprobe \
+ ac_cv_path_E2FSCK=/usr/sbin/fsck.ext2 \
+ ac_cv_path_E3FSCK=/usr/sbin/fsck.ext3 \
+ ac_cv_path_E4FSCK=/usr/sbin/fsck.ext4 \
+ ac_cv_path_MOUNT_NFS=/usr/sbin/mount.nfs \
+ ac_cv_path_MOUNT=/bin/mount \
+ ac_cv_path_UMOUNT=/bin/umount \
ac_cv_linux_procfs=yes
--
You are receiving this mail because:
You are on the CC list for the bug.
next reply other threads:[~2019-05-14 18:51 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-05-14 18:51 bugzilla at busybox.net [this message]
2019-08-17 12:48 ` [Buildroot] [Bug 11876] automount using host mount/umount bugzilla at busybox.net
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=bug-11876-163@https.bugs.busybox.net/ \
--to=bugzilla@busybox.net \
--cc=buildroot@busybox.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox