mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-28 13:46:32 +00:00
hostapd: ensure hostapd binaries are installed in the right place
Ensure hostapd and hostapd_cli are installed in /usr/bin/ even if the directory does not exist. Signed-off-by: Lionel Landwerlin <llandwerlin@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
parent
732cb780ee
commit
1696823707
3
CHANGES
3
CHANGES
@ -4,7 +4,8 @@
|
|||||||
compilation, and cache is stored in ~/.buildroot-ccache.
|
compilation, and cache is stored in ~/.buildroot-ccache.
|
||||||
|
|
||||||
Updated/fixed packages: busybox, dbus, cloop, gdk-pixbuf,
|
Updated/fixed packages: busybox, dbus, cloop, gdk-pixbuf,
|
||||||
libconfig, m4, openssh, openssl, qt, usbutils, xz, zlib
|
hostapd, libconfig, m4, openssh, openssl, qt, usbutils, xz,
|
||||||
|
zlib
|
||||||
|
|
||||||
New packages: dhrystone, lsuio, rsh-redone, whetstone
|
New packages: dhrystone, lsuio, rsh-redone, whetstone
|
||||||
|
|
||||||
|
@ -74,7 +74,7 @@ define HOSTAPD_CONFIGURE_CMDS
|
|||||||
$(SED) "s/^#CONFIG_DRIVER_WIRED/CONFIG_DRIVER_WIRED/" $(HOSTAPD_CONFIG)
|
$(SED) "s/^#CONFIG_DRIVER_WIRED/CONFIG_DRIVER_WIRED/" $(HOSTAPD_CONFIG)
|
||||||
$(SED) "s/^#CONFIG_DRIVER_NL80211/CONFIG_DRIVER_NL80211/" $(HOSTAPD_CONFIG)
|
$(SED) "s/^#CONFIG_DRIVER_NL80211/CONFIG_DRIVER_NL80211/" $(HOSTAPD_CONFIG)
|
||||||
# Misc
|
# Misc
|
||||||
$(SED) "s/^CONFIG_IPV6/#CONFIG_IPV6/" $(HOSTAPD_CONFIG)
|
$(SED) "s/^CONFIG_IPV6/#CONFIG_IPV6/" $(HOSTAPD_CONFIG)
|
||||||
$(SED) "s/^#CONFIG_IEEE80211N/CONFIG_IEEE80211N/" $(HOSTAPD_CONFIG)
|
$(SED) "s/^#CONFIG_IEEE80211N/CONFIG_IEEE80211N/" $(HOSTAPD_CONFIG)
|
||||||
$(SED) "s/^#CONFIG_IEEE80211R/CONFIG_IEEE80211R/" $(HOSTAPD_CONFIG)
|
$(SED) "s/^#CONFIG_IEEE80211R/CONFIG_IEEE80211R/" $(HOSTAPD_CONFIG)
|
||||||
$(HOSTAPD_CRYPTO_CONFIG)
|
$(HOSTAPD_CRYPTO_CONFIG)
|
||||||
@ -85,10 +85,10 @@ define HOSTAPD_CONFIGURE_CMDS
|
|||||||
endef
|
endef
|
||||||
|
|
||||||
define HOSTAPD_INSTALL_TARGET_CMDS
|
define HOSTAPD_INSTALL_TARGET_CMDS
|
||||||
$(INSTALL) -m 0755 $(@D)/$(HOSTAPD_SUBDIR)/hostapd \
|
$(INSTALL) -m 0755 -D $(@D)/$(HOSTAPD_SUBDIR)/hostapd \
|
||||||
$(TARGET_DIR)/usr/sbin
|
$(TARGET_DIR)/usr/sbin/hostapd
|
||||||
$(INSTALL) -m 0755 $(@D)/$(HOSTAPD_SUBDIR)/hostapd_cli \
|
$(INSTALL) -m 0755 -D $(@D)/$(HOSTAPD_SUBDIR)/hostapd_cli \
|
||||||
$(TARGET_DIR)/usr/bin
|
$(TARGET_DIR)/usr/bin/hostapd_cli
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define HOSTAPD_UNINSTALL_TARGET_CMDS
|
define HOSTAPD_UNINSTALL_TARGET_CMDS
|
||||||
|
Loading…
x
Reference in New Issue
Block a user