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

Missing lib80211.so.1 library #68

Closed
kprovost opened this issue Dec 16, 2015 · 2 comments
Closed

Missing lib80211.so.1 library #68

kprovost opened this issue Dec 16, 2015 · 2 comments

Comments

@kprovost
Copy link
Contributor

With freebsd-wifi-build version d75f430 and FreeBSD head I see the following multiple times during boot:

Shared object "lib80211.so.1" not found, required by "ifconfig"

Presumably this is the result of the refactoring done in ifconfig.
Simply including the library in the build fixes the issue for me:

diff --git a/build/bin/build_mfsroot b/build/bin/build_mfsroot
index 2c1f0f4..733f1fb 100755
--- a/build/bin/build_mfsroot
+++ b/build/bin/build_mfsroot
@@ -267,6 +267,7 @@ ${INSTALL_DEF_FILE} ${X_BASEDIR}/files/pf.conf ${X_STAGING_FSROOT}/c/etc/

 # networking
 ${INSTALL_DEF_BIN} ${X_DESTDIR}/sbin/ifconfig ${X_STAGING_FSROOT}/sbin/
+${INSTALL_DEF_LIB} ${X_DESTDIR}/lib/lib80211.so.1 ${X_STAGING_FSROOT}/lib
 ${INSTALL_DEF_BIN} ${X_DESTDIR}/sbin/route ${X_STAGING_FSROOT}/sbin/
 ${INSTALL_DEF_BIN} ${X_DESTDIR}/sbin/ping ${X_STAGING_FSROOT}/sbin/
 ${INSTALL_DEF_BIN} ${X_DESTDIR}/sbin/ping6 ${X_STAGING_FSROOT}/sbin/
@erikarn
Copy link
Member

erikarn commented Dec 18, 2015

should be fine now!

@erikarn erikarn closed this as completed Dec 18, 2015
@kprovost
Copy link
Contributor Author

Confirmed, this is fixed.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants