Compare commits
11 Commits
master
...
1af2c08e12
| Author | SHA1 | Date | |
|---|---|---|---|
|
1af2c08e12
|
|||
|
9b17e9fadf
|
|||
|
b47e87e6cf
|
|||
|
02d97a0cd5
|
|||
|
139c702d3d
|
|||
|
a4442aa0d4
|
|||
|
cd1f5c9a33
|
|||
|
0d7f877771
|
|||
|
6978ded651
|
|||
|
99b4349973
|
|||
|
b6d3ef2da8
|
2
LICENSE
2
LICENSE
@@ -1,6 +1,6 @@
|
|||||||
MIT License
|
MIT License
|
||||||
|
|
||||||
Copyright (c) 2023 - Lars Niesen, Emre Gülçino, Tilman Sattler, David Sattler
|
Copyright (c) [year] [fullname]
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
|||||||
15
default.xml
15
default.xml
@@ -5,33 +5,28 @@
|
|||||||
<default sync-j="4" />
|
<default sync-j="4" />
|
||||||
|
|
||||||
<!-- remotes -->
|
<!-- remotes -->
|
||||||
<remote name="caros" fetch="https://git.larsniesen.de/caros" />
|
<remote name="caros" fetch="https://git.larsniesen.de/CaROS" />
|
||||||
|
|
||||||
<!-- layers -->
|
<!-- layers -->
|
||||||
<project remote="caros"
|
<project remote="caros"
|
||||||
name="poky"
|
name="poky"
|
||||||
path="poky"
|
path="poky"
|
||||||
revision="5c556073ac6e54314aa3fc210db040f3ab55105a" />
|
revision="kirkstone" />
|
||||||
|
|
||||||
|
|
||||||
<project remote="caros"
|
<project remote="caros"
|
||||||
name="meta-openembedded"
|
name="meta-openembedded"
|
||||||
path="meta-oe"
|
path="meta-oe"
|
||||||
revision="a88cb922f91fda95e8a584cee3092083d5ad3e98" />
|
revision="kirkstone" />
|
||||||
|
|
||||||
<project remote="caros"
|
<project remote="caros"
|
||||||
name="meta-qt6"
|
name="meta-qt6"
|
||||||
path="meta-qt6"
|
path="meta-qt6"
|
||||||
revision="81a8947b8da3f0fbe03974d6b29e6205a76c3c42" />
|
revision="lts-6.2.9" />
|
||||||
|
|
||||||
<project remote="caros"
|
<project remote="caros"
|
||||||
name="meta-selinux"
|
name="meta-selinux"
|
||||||
path="meta-selinux"
|
path="meta-selinux"
|
||||||
revision="a401f4b2816a0b41ce8d9351542658c721935bcd" />
|
revision="kirkstone" />
|
||||||
|
|
||||||
<project remote="caros"
|
|
||||||
name="meta-intel"
|
|
||||||
path="meta-intel"
|
|
||||||
revision="1342bcdc5bfc6620737e7d195e7d9bd744348577" />
|
|
||||||
</manifest>
|
</manifest>
|
||||||
|
|
||||||
|
|||||||
@@ -5,8 +5,9 @@ set -o pipefail
|
|||||||
|
|
||||||
MANIFEST_BRANCH="${1:-main}"
|
MANIFEST_BRANCH="${1:-main}"
|
||||||
|
|
||||||
YOCTO_GID="1000"
|
<<<<<<< HEAD
|
||||||
YOCTO_UID="1000"
|
YOCTO_GID="$((1 + $RANDOM % 1000))"
|
||||||
|
YOCTO_UID="$((1 + $RANDOM % 1000))"
|
||||||
YOCTO_USER="yocto"
|
YOCTO_USER="yocto"
|
||||||
YOCTO_WORKDIR="/opt/${YOCTO_USER}"
|
YOCTO_WORKDIR="/opt/${YOCTO_USER}"
|
||||||
|
|
||||||
@@ -14,7 +15,6 @@ YOCTO_WORKDIR="/opt/${YOCTO_USER}"
|
|||||||
[[ -d "$PWD"/sstate-cache ]] || mkdir "$PWD"/sstate-cache
|
[[ -d "$PWD"/sstate-cache ]] || mkdir "$PWD"/sstate-cache
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
subgidSize=$(( $(podman info --format "{{ range .Host.IDMappings.GIDMap }}+{{.Size }}{{end }}" ) - 1 ))
|
subgidSize=$(( $(podman info --format "{{ range .Host.IDMappings.GIDMap }}+{{.Size }}{{end }}" ) - 1 ))
|
||||||
subuidSize=$(( $(podman info --format "{{ range .Host.IDMappings.UIDMap }}+{{.Size }}{{end }}" ) - 1 ))
|
subuidSize=$(( $(podman info --format "{{ range .Host.IDMappings.UIDMap }}+{{.Size }}{{end }}" ) - 1 ))
|
||||||
|
|
||||||
|
|||||||
@@ -15,4 +15,4 @@ MAINTAINER = "Lars Niesen <lars.niesen@gmx.de>"
|
|||||||
|
|
||||||
TARGET_VENDOR = "-caros"
|
TARGET_VENDOR = "-caros"
|
||||||
|
|
||||||
DISTRO_FEATURES ?= ""
|
DISTRO_FEATURES += "wayland systemd usbgadget usbhost"
|
||||||
|
|||||||
@@ -3,3 +3,12 @@
|
|||||||
#########################
|
#########################
|
||||||
PREFERRED_VERSION_linux-yocto ?= "5.15%"
|
PREFERRED_VERSION_linux-yocto ?= "5.15%"
|
||||||
PREFERRED_VERSION_linux-yocto-rt ?= "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 = ""
|
||||||
|
|
||||||
|
|||||||
@@ -21,7 +21,6 @@ BBLAYERS ?= " \
|
|||||||
${TOPDIR}/../meta-oe/meta-python \
|
${TOPDIR}/../meta-oe/meta-python \
|
||||||
${TOPDIR}/../meta-oe/meta-webserver \
|
${TOPDIR}/../meta-oe/meta-webserver \
|
||||||
${TOPDIR}/../meta-oe/meta-xfce \
|
${TOPDIR}/../meta-oe/meta-xfce \
|
||||||
${TOPDIR}/../meta-intel \
|
|
||||||
${TOPDIR}/../meta-caros \
|
${TOPDIR}/../meta-caros \
|
||||||
"
|
"
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
MACHINE ?= "intel-corei7-64"
|
MACHINE ?= "genericx86-64"
|
||||||
|
|
||||||
DL_DIR ?= "${TOPDIR}/../downloads"
|
DL_DIR ?= "${TOPDIR}/../downloads"
|
||||||
|
|
||||||
|
|||||||
10
meta-caros/recipes-core/images/caros-image-minimal.bb
Normal file
10
meta-caros/recipes-core/images/caros-image-minimal.bb
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
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"
|
||||||
Reference in New Issue
Block a user