yocto hostapd and other packages

取消
显示结果 
显示  仅  | 搜索替代 
您的意思是: 

yocto hostapd and other packages

4,266 次查看
俊宝胡
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

标签 (1)
0 项奖励
1 回复

2,232 次查看
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 项奖励