Compare commits

..

9 Commits

Author SHA1 Message Date
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
4 changed files with 8 additions and 2 deletions

View File

@ -28,5 +28,10 @@
name="meta-selinux"
path="meta-selinux"
revision="a401f4b2816a0b41ce8d9351542658c721935bcd" />
<project remote="caros"
name="meta-intel"
path="meta-intel"
revision="1342bcdc5bfc6620737e7d195e7d9bd744348577" />
</manifest>

View File

@ -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"

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"