Compare commits

..

9 Commits

Author SHA1 Message Date
d3f99a1753
base image on fullcmd line 2023-09-23 20:50:13 +02:00
0280cc012f
Fix rebase 2023-09-23 20:39:11 +02:00
9c0575e3d0
add distro features and disable busybox 2023-09-23 20:39:11 +02:00
28bb810892
fix spelling 2023-09-23 20:39:11 +02:00
5ec6b8fc4b
first basic image idea 2023-09-23 20:39:11 +02:00
a3b12636e5
Implement basic yocto build setup based on protos from jhnc-oss 2023-09-23 20:39:11 +02:00
d46a247d57
Implement basic yocto build setup based on protos from jhnc-oss 2023-09-23 20:39:09 +02:00
d6084f2ed8 !21 Change repos to fixed srcrev
This commit changes the repository from HEAD to a fixed commit
hash to prevent accidental updates when a meta-* layer changes.
2023-09-23 15:45:08 +00:00
bd2e7c5319
!26 Add upstream changes to UID and GID
The container upstream changed the internal UID and GID
which causes the boostrap script to create wrong mappings
2023-09-23 17:40:08 +02:00
4 changed files with 18 additions and 16 deletions

View File

@ -11,22 +11,22 @@
<project remote="caros"
name="poky"
path="poky"
revision="kirkstone" />
revision="5c556073ac6e54314aa3fc210db040f3ab55105a" />
<project remote="caros"
name="meta-openembedded"
path="meta-oe"
revision="kirkstone" />
revision="a88cb922f91fda95e8a584cee3092083d5ad3e98" />
<project remote="caros"
name="meta-qt6"
path="meta-qt6"
revision="lts-6.2.9" />
revision="81a8947b8da3f0fbe03974d6b29e6205a76c3c42" />
<project remote="caros"
name="meta-selinux"
path="meta-selinux"
revision="kirkstone" />
revision="a401f4b2816a0b41ce8d9351542658c721935bcd" />
</manifest>

View File

@ -5,8 +5,8 @@ set -o pipefail
MANIFEST_BRANCH="${1:-main}"
YOCTO_GID="4040"
YOCTO_UID="2000"
YOCTO_GID="1000"
YOCTO_UID="1000"
YOCTO_USER="yocto"
YOCTO_WORKDIR="/opt/${YOCTO_USER}"

View File

@ -1,10 +0,0 @@
SUMMARY = "Minimal bootable image for CaROS develoment"
IMAGE_FEATURES = "nfs-server ssh-server-openssh"
# packagegroup-core-boot expandent to remove busybox
# PACKAGES_CORE_BOOT =
IMAGE_INSTALL = "packagegroup-core-boot"
inherit core-image
LICENSE = "MIT"

View File

@ -0,0 +1,12 @@
DESCRIPTION = "A console-only image with more full-featured Linux system \
functionality installed."
IMAGE_FEATURES += "splash ssh-server-openssh"
IMAGE_INSTALL = "\
packagegroup-core-boot \
packagegroup-core-full-cmdline \
${CORE_IMAGE_EXTRA_INSTALL} \
"
inherit core-image