Compare commits
6 Commits
98bd6382fe
...
ts/31-add-
| Author | SHA1 | Date | |
|---|---|---|---|
|
cc28ffce35
|
|||
| d6084f2ed8 | |||
|
bd2e7c5319
|
|||
|
126e39c583
|
|||
|
4bcc914087
|
|||
| a2fcac7b4b |
2
.gitignore
vendored
2
.gitignore
vendored
@@ -1,3 +1,3 @@
|
|||||||
deploy_rpms
|
deploy
|
||||||
sstate-cache
|
sstate-cache
|
||||||
downloads
|
downloads
|
||||||
|
|||||||
69
Roadmap.md
Normal file
69
Roadmap.md
Normal file
@@ -0,0 +1,69 @@
|
|||||||
|
First ideas and Roadmap
|
||||||
|
=======================
|
||||||
|
|
||||||
|
# Planned functional features
|
||||||
|
|
||||||
|
- Music (files & bluetooth & aux) incl. visuializer
|
||||||
|
- Google-Maps etc.
|
||||||
|
- NFS / SMB / HTTP server for manuals etc.
|
||||||
|
- WIFI AP support
|
||||||
|
- Hardened distro
|
||||||
|
- Linux-RT Kernel for CAN-bus
|
||||||
|
- CAN-bus
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# UI/UX features
|
||||||
|
|
||||||
|
- Hacky UI (no plymouth, terminal tools, etc.)
|
||||||
|
|
||||||
|
|
||||||
|
# Planned software features
|
||||||
|
|
||||||
|
- QT6
|
||||||
|
- Systemd
|
||||||
|
- Wayland
|
||||||
|
- Linux-RT
|
||||||
|
- ...
|
||||||
|
|
||||||
|
# Hardware considerations
|
||||||
|
|
||||||
|
- x86_64
|
||||||
|
- Intel nuc
|
||||||
|
- China Laptop
|
||||||
|
- 3D printed parts for mounting (opensource CAD files, preferred STP)
|
||||||
|
- Nav-Buttons/Rotary encoders (navigation besides Touchscreen)
|
||||||
|
- Touchscreen monitor
|
||||||
|
- USB hub (inside the glove compartment, on the side of the screen)
|
||||||
|
|
||||||
|
# Misc
|
||||||
|
- Cava for FFT and music visuialisation
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# Strength of the Team members
|
||||||
|
|
||||||
|
Albert: ??? Frontend?
|
||||||
|
|
||||||
|
David: Hardware, car stuff & co.
|
||||||
|
|
||||||
|
Emre: Embedded (OS / Yocto). Frontend
|
||||||
|
|
||||||
|
Lars: Embedded (Kernel + driver). Yocto.
|
||||||
|
|
||||||
|
Tilman: Yocto (beginner). Deamons (system layer). QT6
|
||||||
|
|
||||||
|
# First timeline and work distribution idea
|
||||||
|
|
||||||
|
1. Minimal image (Hello world OS) - Lars, Tilman, (Emre)
|
||||||
|
2. Hardware discussion
|
||||||
|
3. Deamon Setup + Hardware - (Lars), Emre, Tilman, David
|
||||||
|
- Musik
|
||||||
|
- GPIO
|
||||||
|
4. UI - ?
|
||||||
|
- Visuializer
|
||||||
|
- Settings
|
||||||
|
5. NFS Server & Config of OS. - (Lars), Emre, Tilman, David
|
||||||
|
6. Can bus / Relatime - Lars, Emre, Tilman, David
|
||||||
|
|
||||||
|
__Notes:__ Points 3, 4 and 5 are workable in parallel.
|
||||||
13
default.xml
13
default.xml
@@ -11,22 +11,27 @@
|
|||||||
<project remote="caros"
|
<project remote="caros"
|
||||||
name="poky"
|
name="poky"
|
||||||
path="poky"
|
path="poky"
|
||||||
revision="kirkstone" />
|
revision="5c556073ac6e54314aa3fc210db040f3ab55105a" />
|
||||||
|
|
||||||
|
|
||||||
<project remote="caros"
|
<project remote="caros"
|
||||||
name="meta-openembedded"
|
name="meta-openembedded"
|
||||||
path="meta-oe"
|
path="meta-oe"
|
||||||
revision="kirkstone" />
|
revision="a88cb922f91fda95e8a584cee3092083d5ad3e98" />
|
||||||
|
|
||||||
<project remote="caros"
|
<project remote="caros"
|
||||||
name="meta-qt6"
|
name="meta-qt6"
|
||||||
path="meta-qt6"
|
path="meta-qt6"
|
||||||
revision="lts-6.2.9" />
|
revision="81a8947b8da3f0fbe03974d6b29e6205a76c3c42" />
|
||||||
|
|
||||||
<project remote="caros"
|
<project remote="caros"
|
||||||
name="meta-selinux"
|
name="meta-selinux"
|
||||||
path="meta-selinux"
|
path="meta-selinux"
|
||||||
revision="kirkstone" />
|
revision="a401f4b2816a0b41ce8d9351542658c721935bcd" />
|
||||||
|
|
||||||
|
<project remote="caros"
|
||||||
|
name="meta-intel"
|
||||||
|
path="meta-intel"
|
||||||
|
revision="1342bcdc5bfc6620737e7d195e7d9bd744348577" />
|
||||||
</manifest>
|
</manifest>
|
||||||
|
|
||||||
|
|||||||
@@ -5,8 +5,8 @@ set -o pipefail
|
|||||||
|
|
||||||
MANIFEST_BRANCH="${1:-main}"
|
MANIFEST_BRANCH="${1:-main}"
|
||||||
|
|
||||||
YOCTO_GID="4040"
|
YOCTO_GID="1000"
|
||||||
YOCTO_UID="2000"
|
YOCTO_UID="1000"
|
||||||
YOCTO_USER="yocto"
|
YOCTO_USER="yocto"
|
||||||
YOCTO_WORKDIR="/opt/${YOCTO_USER}"
|
YOCTO_WORKDIR="/opt/${YOCTO_USER}"
|
||||||
|
|
||||||
@@ -56,7 +56,7 @@ if $DO_SSTATE ; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
if $DO_DEPLOY ; then
|
if $DO_DEPLOY ; then
|
||||||
DEPLOY_PATH="deploy_rpms"
|
DEPLOY_PATH="deploy"
|
||||||
mkdir -p $DEPLOY_PATH
|
mkdir -p $DEPLOY_PATH
|
||||||
rm -rf "$DEPLOY_PATH"/*
|
rm -rf "$DEPLOY_PATH"/*
|
||||||
deploy_param1="-v"
|
deploy_param1="-v"
|
||||||
|
|||||||
@@ -21,6 +21,7 @@ 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 ?= "genericx86-64"
|
MACHINE ?= "intel-corei7-64"
|
||||||
|
|
||||||
DL_DIR ?= "${TOPDIR}/../downloads"
|
DL_DIR ?= "${TOPDIR}/../downloads"
|
||||||
|
|
||||||
@@ -118,4 +118,4 @@ BB_DISKMON_DIRS ??= "\
|
|||||||
# this doesn't mean anything to you.
|
# this doesn't mean anything to you.
|
||||||
CONF_VERSION = "2"
|
CONF_VERSION = "2"
|
||||||
|
|
||||||
DEPLOY_DIR_RPM = "${TOPDIR}/../deploy_rpms"
|
DEPLOY_DIR = "${TOPDIR}/../deploy"
|
||||||
|
|||||||
Reference in New Issue
Block a user