Compare commits

...

2 Commits

Author SHA1 Message Date
Thomas Klaehn
9bd8d3bc2b recipes-core: Add tools for update image creation
Signed-off-by: Thomas Klaehn <thomas.klaehn@perinet.io>
2020-09-04 07:30:14 +02:00
Thomas Klaehn
4b4d29a147 buildconf: Add meta-python2 layer to support python2
Signed-off-by: Thomas Klaehn <thomas.klaehn@perinet.io>
2020-09-04 07:28:57 +02:00
2 changed files with 7 additions and 0 deletions

View File

@ -13,6 +13,7 @@ BBLAYERS ?= " \
${TOPDIR}/../layers/meta-openembedded/meta-oe \ ${TOPDIR}/../layers/meta-openembedded/meta-oe \
${TOPDIR}/../layers/meta-openembedded/meta-networking \ ${TOPDIR}/../layers/meta-openembedded/meta-networking \
${TOPDIR}/../layers/meta-openembedded/meta-python \ ${TOPDIR}/../layers/meta-openembedded/meta-python \
${TOPDIR}/../layers/meta-openembedded/meta-python2 \
${TOPDIR}/../layers/meta-virtualization \ ${TOPDIR}/../layers/meta-virtualization \
${TOPDIR}/../layers/meta-arm/meta-arm-toolchain \ ${TOPDIR}/../layers/meta-arm/meta-arm-toolchain \
${TOPDIR}/../layers/meta-perinet \ ${TOPDIR}/../layers/meta-perinet \

View File

@ -45,10 +45,16 @@ WEBUI_TOOLS = " \
optipng \ optipng \
" "
IMAGE_TOOLS = " \
python \
openssl-bin \
"
IMAGE_INSTALL += " \ IMAGE_INSTALL += " \
${BASE_TOOLS} \ ${BASE_TOOLS} \
${POSIX_TOOLS} \ ${POSIX_TOOLS} \
${CR4_CROSS_TOOLS} \ ${CR4_CROSS_TOOLS} \
${API_TOOLS} \ ${API_TOOLS} \
${IMAGE_TOOLS} \
" "