ODROID-C5: jammy/weston: prevent updating 'weston.ini'

ODROID-C5 have its own 'weston.ini' for customized Weston by Amlogic,
therefore it should not be updated by the package 'odroid-kiosk-weston'.

Signed-off-by: Dongjin Kim <tobetter@gmail.com>
Change-Id: Ie93fde02b190ddf69e95e6349b88e179c4ada27b
This commit is contained in:
Dongjin Kim
2025-08-22 11:11:53 +09:00
parent 60e7718acb
commit 0606bca871

View File

@@ -1,4 +1,14 @@
#!/bin/sh
rm -f /etc/xdg/weston/weston.ini
BOARD=@@DEFAULT_BOARD@@
case ${BOARD} in
odroidc5)
echo "Use preinstalled /etc/xdg/weston/weston.ini"
;;
*)
rm -f /etc/xdg/weston/weston.ini
;;
esac
dpkg-reconfigure odroid-kiosk-weston