Skip to content

Commit

Permalink
Merge pull request #100 from m-tmatma/feature/kirkstone-new
Browse files Browse the repository at this point in the history
kirkstone take2
  • Loading branch information
m-tmatma authored Feb 23, 2024
2 parents fa5f6d0 + c575b05 commit 47cc6a0
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 7 deletions.
2 changes: 1 addition & 1 deletion container/home/yocto/extra-local.conf
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
MACHINE="raspberrypi4"
LICENSE_FLAGS_WHITELIST += "commercial"
LICENSE_FLAGS_ACCEPTED += "commercial"

3 changes: 2 additions & 1 deletion container/home/yocto/meta-test-image/conf/layer.conf
Original file line number Diff line number Diff line change
Expand Up @@ -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"
#LAYERSERIES_COMPAT_meta-test-image = "warrior zeus dunfell honister"
LAYERSERIES_COMPAT_meta-test-image = "kirkstone"
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
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 \
"
IMAGE_INSTALL_append = " \
IMAGE_INSTALL:append = " \
go-helloworld \
"
2 changes: 1 addition & 1 deletion default.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<manifest>
<default sync-j="4" revision="dunfell"/>
<default sync-j="4" revision="kirkstone"/>

<remote fetch="https://git.yoctoproject.org/git" name="yocto"/>
<remote fetch="https://github.com/openembedded" name="meta-openembedded"/>
Expand Down
4 changes: 3 additions & 1 deletion docker/yocto/Dockerfile
Original file line number Diff line number Diff line change
@@ -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 \
Expand All @@ -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
Expand Down

0 comments on commit 47cc6a0

Please sign in to comment.