Hi, I got the Forma this week and was looking to get KSM working. I dug into the KSM and the Forma firmware update, got the touch and wifi working, but got stuck. I saw that CH23 did work for the Clara so I did diffed what they did and I found out I was on the right path, but CH23 already did a way more comprehensive job. I only had to make the small changes documented below and usb/wifi/touch are working as expected on the Forma!
I don't want to cause confusion by providing any files as this thread can be hard to follow so here are the changes below.
Code:
diff --git a/adds/kbmenu/onstart/ksmhome.sh b/adds/kbmenu/onstart/ksmhome.sh
index 74d41b0..8ae3bce 100755
--- a/adds/kbmenu/onstart/ksmhome.sh
+++ b/adds/kbmenu/onstart/ksmhome.sh
@@ -144,7 +144,7 @@ configureKSM() {
kobomenuFontsize=50
kobomenuMenuBarFontsize=40
;;
- daylight)
+ daylight|frost)
kobomenuFontsize=64
kobomenuMenuBarFontsize=50
;;
diff --git a/etc/init.d/rcS b/etc/init.d/rcS
index eff4878..e6f209a 100755
--- a/etc/init.d/rcS
+++ b/etc/init.d/rcS
@@ -93,7 +93,7 @@ if [ $(strings /usr/local/Kobo/pickel | grep -c wait-for-hit) -ge 1 ]; then
export COORDINATES="180 -1200 100 100 320 -1200 100 100";;
dragon|dahlia|alyssum|nova)
export COORDINATES="120 1220 100 100 280 1220 100 100";;
- daylight)
+ daylight|frost)
export COORDINATES="100 1640 200 200 300 1640 200 200";;
*)i
export COORDINATES="55 685 60 60 150 685 60 60";
tldr: Download CH23's version for Clara, add "frost" where "daylight" (kobo aura one) is cited and it will work.