Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
From d9afbd7131d77fbba21f6240c55fc5a7acb0c5ec Mon Sep 17 00:00:00 2001
From: sundaravinayagam <vinaysun21@gmail.com>
Date: Tue, 5 Aug 2025 16:52:42 +0000
Subject: [PATCH 1/1] Added waveshare_panel dtbo and updated kernel source
revision

---
conf/machine/include/rpi-base.inc | 1 +
recipes-kernel/linux/linux-raspberrypi_6.6.bb | 5 +++--
2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/conf/machine/include/rpi-base.inc b/conf/machine/include/rpi-base.inc
index a5fd1a4..57fcd94 100644
--- a/conf/machine/include/rpi-base.inc
+++ b/conf/machine/include/rpi-base.inc
@@ -67,6 +67,7 @@ RPI_KERNEL_DEVICETREE_OVERLAYS ?= " \
overlays/w1-gpio.dtbo \
overlays/w1-gpio-pullup.dtbo \
overlays/wm8960-soundcard.dtbo \
+ overlays/vc4-kms-dsi-waveshare-panel.dtbo \
"

RPI_KERNEL_DEVICETREE ?= " \
diff --git a/recipes-kernel/linux/linux-raspberrypi_6.6.bb b/recipes-kernel/linux/linux-raspberrypi_6.6.bb
index b4d9953..58ebde0 100644
--- a/recipes-kernel/linux/linux-raspberrypi_6.6.bb
+++ b/recipes-kernel/linux/linux-raspberrypi_6.6.bb
@@ -1,8 +1,9 @@
-LINUX_VERSION ?= "6.6.22"
+LINUX_VERSION ?= "6.6.78"
LINUX_RPI_BRANCH ?= "rpi-6.6.y"
LINUX_RPI_KMETA_BRANCH ?= "yocto-6.6"

-SRCREV_machine = "c04af98514c26014a4f29ec87b3ece95626059bd"
+#SRCREV_machine = "c04af98514c26014a4f29ec87b3ece95626059bd"
+SRCREV_machine = "bba53a117a4a5c29da892962332ff1605990e17a"
SRCREV_meta = "6a24861d6504575a4a9f92366285332d47c7e111"

KMETA = "kernel-meta"
--
2.34.1

7 changes: 7 additions & 0 deletions recipes-apps/panomic/files/appInit
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#!/bin/sh

echo "Starting Technoculture App"

/opt/run_bootanim.sh &

exec /sbin/init
Binary file modified recipes-apps/panomic/files/hmi-ui-forge_1.0.0_arm64.deb
Binary file not shown.
1 change: 0 additions & 1 deletion recipes-apps/panomic/panomic_1.0.bb
Original file line number Diff line number Diff line change
Expand Up @@ -65,4 +65,3 @@ do_install:append() {
FILES:${PN} += "${systemd_system_unitdir}/system/hmi.service"
FILES:${PN} += "/usr/lib/hmi-ui-forge"
INSANE_SKIP:${PN} += "file-rdeps"

16 changes: 16 additions & 0 deletions recipes-bsp/u-boot/files/no-splash.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Disable framebuffer and splash features
CONFIG_SYS_CONSOLE_INFO_QUIET=y
CONFIG_SYS_DEVICE_NULLDEV=y
CONFIG_SILENT_CONSOLE=y
CONFIG_LOGLEVEL=0
CONFIG_BOOTDELAY=0
CONFIG_SPLASH_SCREEN=y
CONFIG_SPLASH_SCREEN_ALIGN=y
CONFIG_BMP_16BPP=y
CONFIG_BMP_24BPP=y
CONFIG_BMP_32BPP=y
CONFIG_CMD_BMP=y
CONFIG_VIDEO=y
CONFIG_SYS_VIDEO_LOGO_MAX_SIZE=3145728
CONFIG_VIDEO_BCM2835=y
CONFIG_SYS_WHITE_ON_BLACK=y
Binary file added recipes-bsp/u-boot/files/splash.bmp
Binary file not shown.
12 changes: 12 additions & 0 deletions recipes-bsp/u-boot/u-boot_%.bbappend
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
FILESEXTRAPATHS:prepend := "${THISDIR}/files:"
SRC_URI:append = " file://no-splash.cfg file://splash.bmp"

UBOOT_CONFIG_FRAGMENTS:append = " file://no-splash.cfg"
do_install:append() {
install -m 0644 ${WORKDIR}/splash.bmp ${D}/boot/splash.bmp
}

# Install to boot partition
do_deploy:append() {
install -m 0644 ${WORKDIR}/splash.bmp ${DEPLOYDIR}/splash.bmp
}