From 7a2220ed36b93b1acecd778e7a9beb7d4e6043a0 Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Fri, 1 Aug 2025 18:04:35 -0500 Subject: [PATCH] Install fonts It turns out, `WebKitWebProcess` was aborting (with no error message or anything) because it couldn't find any fonts. I was only able to determine this after attaching a remote debugger to it and getting a backtrace. I had to wrap the `WebKitWebProcess` executable with a script that launched it with `gdbserver`, and then connect to that server from my development system. --- configs/kitchenos_defconfig | 3 +++ 1 file changed, 3 insertions(+) diff --git a/configs/kitchenos_defconfig b/configs/kitchenos_defconfig index da69903..6fb91d0 100644 --- a/configs/kitchenos_defconfig +++ b/configs/kitchenos_defconfig @@ -28,6 +28,9 @@ BR2_LINUX_KERNEL_NEEDS_HOST_OPENSSL=y BR2_PACKAGE_XZ=y BR2_PACKAGE_GDB=y BR2_PACKAGE_STRACE=y +BR2_PACKAGE_BITSTREAM_VERA=y +BR2_PACKAGE_DEJAVU=y +BR2_PACKAGE_LIBERATION=y BR2_PACKAGE_SWAY=y BR2_PACKAGE_LIBGLVND=y BR2_PACKAGE_MESA3D=y