Compare commits
20 Commits
1af2c08e12
...
ln/6-minim
| Author | SHA1 | Date | |
|---|---|---|---|
|
9011b22175
|
|||
|
df46a3eed8
|
|||
|
aea9924fd7
|
|||
|
62167a5dfe
|
|||
|
cdf6ddad4e
|
|||
|
11e6f058ea
|
|||
|
801c2388d3
|
|||
|
a3d5206abf
|
|||
|
84a106926e
|
|||
|
cc28ffce35
|
|||
| d6084f2ed8 | |||
|
bd2e7c5319
|
|||
|
126e39c583
|
|||
|
4bcc914087
|
|||
| a2fcac7b4b | |||
|
4254190a14
|
|||
|
50a2e25a9b
|
|||
|
c96db27895
|
|||
|
93013a925a
|
|||
|
e65e90cba5
|
2
LICENSE
2
LICENSE
@@ -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
|
||||
|
||||
13
default.xml
13
default.xml
@@ -11,22 +11,27 @@
|
||||
<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>
|
||||
|
||||
|
||||
@@ -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,4 +15,4 @@ MAINTAINER = "Lars Niesen <lars.niesen@gmx.de>"
|
||||
|
||||
TARGET_VENDOR = "-caros"
|
||||
|
||||
DISTRO_FEATURES += "wayland systemd usbgadget usbhost"
|
||||
DISTRO_FEATURES += "wayland systemd usbgadget usbhost selinux"
|
||||
|
||||
@@ -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 \
|
||||
"
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
MACHINE ?= "genericx86-64"
|
||||
MACHINE ?= "intel-corei7-64"
|
||||
|
||||
DL_DIR ?= "${TOPDIR}/../downloads"
|
||||
|
||||
|
||||
@@ -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"
|
||||
11
meta-caros/recipes-extended/images/caros-image.bb
Normal file
11
meta-caros/recipes-extended/images/caros-image.bb
Normal 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
|
||||
Reference in New Issue
Block a user