Compare commits
11 Commits
7590de0311
...
1af2c08e12
| Author | SHA1 | Date | |
|---|---|---|---|
|
1af2c08e12
|
|||
|
9b17e9fadf
|
|||
|
b47e87e6cf
|
|||
|
02d97a0cd5
|
|||
|
139c702d3d
|
|||
|
a4442aa0d4
|
|||
|
cd1f5c9a33
|
|||
|
0d7f877771
|
|||
|
6978ded651
|
|||
|
99b4349973
|
|||
|
b6d3ef2da8
|
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.
|
||||||
@@ -5,8 +5,9 @@ set -o pipefail
|
|||||||
|
|
||||||
MANIFEST_BRANCH="${1:-main}"
|
MANIFEST_BRANCH="${1:-main}"
|
||||||
|
|
||||||
YOCTO_GID="4040"
|
<<<<<<< HEAD
|
||||||
YOCTO_UID="2000"
|
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 ))
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user