[FAQ] i.MX6UL development Yocto how to add a database, FTP and other applications?

5.1 Yocto how to add a database, FTP and other applications?

A: The file system to add ftp, sqlite3 way:

Yocto use the source code provided by our company, which is modified qt file system path.

sources/meta-myir-imx6ulx/recipes-fsl/images/fsl-image-qt5.bbappend  中加vsftpd, ftp, sqlite3 。


Refer to the following:

DESCRIPTION = "Freescale Image - Adds Qt5"

LICENSE = "MIT"

inherit populate_sdk_qt5

require recipes-fsl/images/fsl-image-qt5-validation-imx.bb

IMAGE_FEATURES += "package-management ssh-server-dropbear "

IMAGE_INSTALL += " \

    imx-kobs \

    tslib \

    tslib-calibrate \

    tslib-conf \

    tslib-tests \

    memtester \

    bzip2 \

    gzip \

    canutils \

    dosfstools \

    mtd-utils \

    mtd-utils-ubifs \

    ntpdate \

    vlan \

    takes \

    net-tools \

    ethtool \

    evtest \

    i2c-tools \

    iperf3 \

    iproute2 \

    iputils \

    udev-extraconf \

    iperf \

    openssl \

    v4l-utils \

    alsa-utils \

    ppp \

    ppp-Quectel \

    sqlite3 \

    libmodbus \

    libxml2 \

    dbus \

    openobex \

    hostapd \

    iptables \

    vsftpd \

    openobex \

    myir-rc-local \

${@base_contains("MACHINE", "mys6ull14x14", "rtl8188eu-driver", "", d)} \

The following is a core-base path of the file system modifications (code omitted):

sources/meta-myir-imx6ulx/recipes-core/images/core-image-base.bbappend

After the addition is complete, and then builds a file system (refer Development Manual), then the resulting file system will have these applications.

Published 52 original articles · won praise 7 · views 30000 +

Guess you like

Origin blog.csdn.net/u011837423/article/details/94451012