mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-30 12:11:56 +00:00
* refactor project structure * environment-based default registry * fix tests * update build container * use docker platform for iso build emulation * simplify compat * Fix docker platform spec in run-compat.sh * handle riscv compat * fix bug with dep error exists attr * undo removal of sorting * use qemu for iso stage --------- Co-authored-by: Mariusz Kogen <k0gen@pm.me> Co-authored-by: Matt Hill <mattnine@protonmail.com>
46 lines
945 B
Bash
46 lines
945 B
Bash
#!/bin/sh
|
|
|
|
cat << EOF
|
|
|
|
# Enable audio (loads snd_bcm2835)
|
|
dtparam=audio=on
|
|
|
|
# Automatically load overlays for detected cameras
|
|
camera_auto_detect=1
|
|
|
|
# Automatically load overlays for detected DSI displays
|
|
display_auto_detect=1
|
|
|
|
# Enable DRM VC4 V3D driver
|
|
dtoverlay=vc4-kms-v3d
|
|
max_framebuffers=2
|
|
|
|
# Run in 64-bit mode
|
|
arm_64bit=1
|
|
|
|
# Disable compensation for displays with overscan
|
|
disable_overscan=1
|
|
|
|
[cm4]
|
|
# Enable host mode on the 2711 built-in XHCI USB controller.
|
|
# This line should be removed if the legacy DWC2 controller is required
|
|
# (e.g. for USB device mode) or if USB support is not required.
|
|
otg_mode=1
|
|
|
|
[all]
|
|
|
|
[pi4]
|
|
# Run as fast as firmware / board allows
|
|
arm_boost=1
|
|
kernel=vmlinuz-${KERNEL_VERSION}-rpi-v8
|
|
initramfs initrd.img-${KERNEL_VERSION}-rpi-v8 followkernel
|
|
|
|
[pi5]
|
|
kernel=vmlinuz-${KERNEL_VERSION}-rpi-2712
|
|
initramfs initrd.img-${KERNEL_VERSION}-rpi-2712 followkernel
|
|
|
|
[all]
|
|
gpu_mem=16
|
|
dtoverlay=pwm-2chan,disable-bt
|
|
|
|
EOF |