11 Commits

Author SHA1 Message Date
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
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
126e39c583 !14 Add Authors into the licensefile 2023-09-21 18:46:02 +02:00
4bcc914087 #20 map/deploy every deployable folders 2023-09-13 09:52:54 +02:00
a2fcac7b4b #25 Add draft of the planned Roadmap
Reviewed-on: #25
Reviewed-by: welwei_tilman <tilman.sattler@stud.th-rosenheim.de>
2023-09-13 07:41:23 +00:00
4254190a14 #1 & #2 Add colaboration rules to the readme 2023-08-25 20:56:28 +02:00
50a2e25a9b Fix depoly path variable in mkdir 2023-08-25 20:43:28 +02:00
c96db27895 #7 donwgrade fedora to f37 2023-07-20 18:52:40 +02:00
93013a925a #3 Fix misconfiguration of the yocto layer 2023-07-13 00:22:13 +02:00
e65e90cba5 Implement basic yocto build setup based on protos from jhnc-oss 2023-07-12 23:46:17 +02:00
8 changed files with 17 additions and 30 deletions

View File

@@ -1,6 +1,6 @@
MIT License
Copyright (c) [year] [fullname]
Copyright (c) 2023 - Lars Niesen, Emre Gülçino, Tilman Sattler, David Sattler
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal

View File

@@ -5,28 +5,33 @@
<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"
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" />
<project remote="caros"
name="meta-intel"
path="meta-intel"
revision="1342bcdc5bfc6620737e7d195e7d9bd744348577" />
</manifest>

View File

@@ -5,9 +5,8 @@ set -o pipefail
MANIFEST_BRANCH="${1:-main}"
<<<<<<< HEAD
YOCTO_GID="$((1 + $RANDOM % 1000))"
YOCTO_UID="$((1 + $RANDOM % 1000))"
YOCTO_GID="1000"
YOCTO_UID="1000"
YOCTO_USER="yocto"
YOCTO_WORKDIR="/opt/${YOCTO_USER}"
@@ -15,6 +14,7 @@ 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 += "wayland systemd usbgadget usbhost"
DISTRO_FEATURES ?= ""

View File

@@ -3,12 +3,3 @@
#########################
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

@@ -21,6 +21,7 @@ BBLAYERS ?= " \
${TOPDIR}/../meta-oe/meta-python \
${TOPDIR}/../meta-oe/meta-webserver \
${TOPDIR}/../meta-oe/meta-xfce \
${TOPDIR}/../meta-intel \
${TOPDIR}/../meta-caros \
"

View File

@@ -1,4 +1,4 @@
MACHINE ?= "genericx86-64"
MACHINE ?= "intel-corei7-64"
DL_DIR ?= "${TOPDIR}/../downloads"

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"