10 Commits

Author SHA1 Message Date
9011b22175 Change image description 2023-09-24 23:48:26 +02:00
df46a3eed8 Add selinux to distro feature 2023-09-24 20:21:13 +02:00
aea9924fd7 base image on fullcmd line 2023-09-24 20:20:48 +02:00
62167a5dfe Fix rebase 2023-09-24 20:20:48 +02:00
cdf6ddad4e add distro features and disable busybox 2023-09-24 20:20:48 +02:00
11e6f058ea fix spelling 2023-09-24 20:20:48 +02:00
801c2388d3 first basic image idea 2023-09-24 20:20:48 +02:00
a3d5206abf Implement basic yocto build setup based on protos from jhnc-oss 2023-09-24 20:20:48 +02:00
84a106926e Implement basic yocto build setup based on protos from jhnc-oss 2023-09-24 20:20:45 +02:00
cc28ffce35 !29 Add meta-intel layer
Add meta-intel intel layer to build for the intel cpu
board configuration.
2023-09-23 23:39:41 +02:00
5 changed files with 22 additions and 3 deletions

View File

@@ -5,7 +5,7 @@
<default sync-j="4" />
<!-- remotes -->
<remote name="caros" fetch="https://git.larsniesen.de/caros" />
<remote name="caros" fetch="https://git.larsniesen.de/CaROS" />
<!-- layers -->
<project remote="caros"

View File

@@ -14,7 +14,6 @@ YOCTO_WORKDIR="/opt/${YOCTO_USER}"
[[ -d "$PWD"/sstate-cache ]] || mkdir "$PWD"/sstate-cache
subgidSize=$(( $(podman info --format "{{ range .Host.IDMappings.GIDMap }}+{{.Size }}{{end }}" ) - 1 ))
subuidSize=$(( $(podman info --format "{{ range .Host.IDMappings.UIDMap }}+{{.Size }}{{end }}" ) - 1 ))

View File

@@ -15,4 +15,4 @@ MAINTAINER = "Lars Niesen <lars.niesen@gmx.de>"
TARGET_VENDOR = "-caros"
DISTRO_FEATURES ?= ""
DISTRO_FEATURES += "wayland systemd usbgadget usbhost selinux"

View File

@@ -3,3 +3,12 @@
#########################
PREFERRED_VERSION_linux-yocto ?= "5.15%"
PREFERRED_VERSION_linux-yocto-rt ?= "5.15%"
VIRTUAL-RUNTIME_init_manager = "systemd"
VIRTUAL-RUNTIME_dev_manager = "udev"
VIRTUAL-RUNTIME_base-utils = "coreutils"
VIRTUAL-RUNTIME_base-utils-hwclock = "util-linux-hwclock"
VIRTUAL-RUNTIME_base-utils-syslog = "util-linux-syslog"
VIRTUAL-RUNTIME_login_manager = "shadow-base"
VIRTUAL-RUNTIME_initscripts = ""

View File

@@ -0,0 +1,11 @@
DESCRIPTION = "CaROS full image"
IMAGE_FEATURES += "splash ssh-server-openssh"
IMAGE_INSTALL = "\
packagegroup-core-boot \
packagegroup-core-full-cmdline \
${CORE_IMAGE_EXTRA_INSTALL} \
"
inherit core-image