From bbaca6e200a35ad0889cdfd2f9346edf62e9789d Mon Sep 17 00:00:00 2001 From: Masaru Tsuchiyama Date: Sun, 13 Mar 2022 08:51:02 +0900 Subject: [PATCH 1/5] add honister --- conf/layer.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/layer.conf b/conf/layer.conf index 32e32a4..c51b9ab 100644 --- a/conf/layer.conf +++ b/conf/layer.conf @@ -10,4 +10,4 @@ BBFILE_PATTERN_meta-test-image = "^${LAYERDIR}/" BBFILE_PRIORITY_meta-test-image = "6" LAYERDEPENDS_meta-test-image = "core" -LAYERSERIES_COMPAT_meta-test-image = "warrior zeus dunfell" +LAYERSERIES_COMPAT_meta-test-image = "warrior zeus dunfell honister" From 5d9cbebe9642302d94a56c47b085d75345d375d9 Mon Sep 17 00:00:00 2001 From: Masaru Tsuchiyama Date: Sun, 13 Mar 2022 09:08:17 +0900 Subject: [PATCH 2/5] fix Variable IMAGE_INSTALL_append contains an operation using the old override syntax. Please convert this layer/metadata before attempting to use with a newer bitbake. --- recipes-custom/images/custom-test-image.bb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/recipes-custom/images/custom-test-image.bb b/recipes-custom/images/custom-test-image.bb index 48423c7..754d371 100644 --- a/recipes-custom/images/custom-test-image.bb +++ b/recipes-custom/images/custom-test-image.bb @@ -1,11 +1,11 @@ DESCRIPTION = "test" require recipes-extended/images/core-image-full-cmdline.bb -IMAGE_INSTALL_append = " \ +IMAGE_INSTALL:append = " \ coreutils \ kernel-modules \ " -IMAGE_INSTALL_append = " \ +IMAGE_INSTALL:append = " \ nginx \ ntpdate \ avahi-daemon \ From df9dfe55968084e4ebc24d709f3b71e05a55fb7d Mon Sep 17 00:00:00 2001 From: Masaru Tsuchiyama Date: Sun, 20 Mar 2022 15:43:38 +0900 Subject: [PATCH 3/5] add ntpdate --- recipes-custom/images/custom-test-image.bb | 1 - 1 file changed, 1 deletion(-) diff --git a/recipes-custom/images/custom-test-image.bb b/recipes-custom/images/custom-test-image.bb index 754d371..310da5f 100644 --- a/recipes-custom/images/custom-test-image.bb +++ b/recipes-custom/images/custom-test-image.bb @@ -10,4 +10,3 @@ IMAGE_INSTALL:append = " \ ntpdate \ avahi-daemon \ " - From 0169998d341070b9e461a069b9b350306b155055 Mon Sep 17 00:00:00 2001 From: Masaru Tsuchiyama Date: Wed, 4 May 2022 09:48:54 +0900 Subject: [PATCH 4/5] change to kirkstone --- conf/layer.conf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/conf/layer.conf b/conf/layer.conf index c51b9ab..5282061 100644 --- a/conf/layer.conf +++ b/conf/layer.conf @@ -10,4 +10,5 @@ BBFILE_PATTERN_meta-test-image = "^${LAYERDIR}/" BBFILE_PRIORITY_meta-test-image = "6" LAYERDEPENDS_meta-test-image = "core" -LAYERSERIES_COMPAT_meta-test-image = "warrior zeus dunfell honister" +#LAYERSERIES_COMPAT_meta-test-image = "warrior zeus dunfell honister" +LAYERSERIES_COMPAT_meta-test-image = "kirkstone" From c575b05eddd0c0d2b37e5f1361c0477a60a78a54 Mon Sep 17 00:00:00 2001 From: Masaru Tsuchiyama Date: Fri, 23 Feb 2024 16:49:22 +0900 Subject: [PATCH 5/5] Update to kirkstone --- container/home/yocto/extra-local.conf | 2 +- .../recipes-custom/images/custom-test-image.bb | 2 +- default.xml | 2 +- docker/yocto/Dockerfile | 4 +++- 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/container/home/yocto/extra-local.conf b/container/home/yocto/extra-local.conf index ea84a2c..d8ddf9f 100644 --- a/container/home/yocto/extra-local.conf +++ b/container/home/yocto/extra-local.conf @@ -1,3 +1,3 @@ MACHINE="raspberrypi4" -LICENSE_FLAGS_WHITELIST += "commercial" +LICENSE_FLAGS_ACCEPTED += "commercial" diff --git a/container/home/yocto/meta-test-image/recipes-custom/images/custom-test-image.bb b/container/home/yocto/meta-test-image/recipes-custom/images/custom-test-image.bb index 59e9f0f..da070b8 100644 --- a/container/home/yocto/meta-test-image/recipes-custom/images/custom-test-image.bb +++ b/container/home/yocto/meta-test-image/recipes-custom/images/custom-test-image.bb @@ -10,6 +10,6 @@ IMAGE_INSTALL:append = " \ ntpdate \ avahi-daemon \ " -IMAGE_INSTALL_append = " \ +IMAGE_INSTALL:append = " \ go-helloworld \ " diff --git a/default.xml b/default.xml index e9a0e8b..eeb6b0f 100644 --- a/default.xml +++ b/default.xml @@ -1,6 +1,6 @@ - + diff --git a/docker/yocto/Dockerfile b/docker/yocto/Dockerfile index 8b24b47..5ac3b42 100644 --- a/docker/yocto/Dockerfile +++ b/docker/yocto/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:18.04 +FROM ubuntu:20.04 ENV DEBIAN_FRONTEND noninteractive RUN apt-get update --fix-missing && apt-get dist-upgrade -y && apt-get autoremove --purge -y \ && apt-get install --fix-missing -y \ @@ -12,6 +12,8 @@ RUN apt-get update --fix-missing && apt-get dist-upgrade -y && apt-get autoremov vim \ tmux \ gosu \ + liblz4-tool \ + zstd \ && rm -rf /var/lib/apt/lists/* # Locales