meta-perinet/recipes-core/images/perifirmware-buildenv-image.bb

61 lines
904 B
BlitzBasic
Raw Normal View History

SUMMARY = "Build environment image for perifirmware"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
require busybox-container-image.bb
BASE_TOOLS = " \
bzip2 \
git \
libtool \
make \
pkgconfig \
"
POSIX_TOOLS = " \
binutils \
binutils-symlinks \
coreutils \
cpp \
cpp-symlinks \
gcc \
gcc-symlinks \
g++ \
g++-symlinks \
glibc-dev \
libgcc-dev \
libstdc++ \
libstdc++-dev \
"
CR4_CROSS_TOOLS = " \
gcc-arm-none-eabi \
"
API_TOOLS = " \
protoc \
protoc-dev \
protoc-gen-doc \
"
WEBUI_TOOLS = " \
html-minifier \
postcss-cli \
cssnano \
optipng \
"
IMAGE_TOOLS = " \
python \
openssl-bin \
"
IMAGE_INSTALL += " \
${BASE_TOOLS} \
${POSIX_TOOLS} \
${CR4_CROSS_TOOLS} \
${API_TOOLS} \
${IMAGE_TOOLS} \
"