yocto hostapd and other packages

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

yocto hostapd and other packages

4,244 Views
俊宝胡
Contributor I

I need hostapd to configure soft ap. But the package is missing. From where should I get this package to install?

Please help.

Board : SABRESDB

Kernel version : Linux3.10.17

I think I should change  the fsl-image-fb.bb  file。

DESCRIPTION = "Freescale Image Frame Buffer Image"

IMAGE_FEATURES += "splash"

LICENSE = "MIT"

inherit core-image

inherit distro_features_check

CONFLICT_DISTRO_FEATURES = "x11 wayland directfb"

DISTRO_FEATURES += "pulseaudio "

WEB = "web-webkit"

# Add extra image features

EXTRA_IMAGE_FEATURES += " \

    nfs-server \

    tools-debug \

    tools-profile \

    ssh-server-dropbear \

"

SOC_IMAGE_INSTALL = ""

SOC_IMAGE_INSTALL_mx6 = "gpu-viv-bin-mx6q gpu-viv-g2d fsl-gpu-sdk"

IMAGE_INSTALL += " \

    ${SOC_IMAGE_INSTALL} \

    cpufrequtils \

    nano \

    packagegroup-fsl-tools-testapps \

    packagegroup-fsl-tools-benchmark \

    "

export IMAGE_BASENAME = "fsl-image-fb"

Regards

Labels (1)
0 Kudos
1 Reply

2,210 Views
gusarambula
NXP TechSupport
NXP TechSupport

The easiest way to install a package for testing is to add it on the local.conf file. You may append with the following line.

IMAGE_INSTALL_append = “ hostapd”

This is actually equivalent to adding the package to the image recipe you wish to bake so feel free to use either method.

0 Kudos