Glad to hear it works for you.

Please provide kernel version, output of uname -a and the version of Petitboot. Also would be nice if you share a photo how the color look like.Pud74 wrote: ↑Wed Jun 15, 2022 11:32 pmI'm using from the 22.04 image via netboot on my N2+ and the colours are very odd. Everything is shades of purple and green. The colours are wrong in both terminal only and gnome desktop. I noticed the same thing on my C4 with the latest petitboot upgrade also, but there it is intermittent between green with light purple text or black with white text. 21.10 works normally, as does coreelec. This has been tested with multiple monitors/TV's and hdmi cables with always the same result.
I feel that this must be a boot configuration issue but I don't know what. Some help would be appreciated.
N2+ Ubuntu 22.04 = Kernel 5.15.0-odroid-arm64tobetter wrote: ↑Wed Jun 15, 2022 11:36 pmPlease provide kernel version, output of uname -a and the version of Petitboot. Also would be nice if you share a photo how the color look like.Pud74 wrote: ↑Wed Jun 15, 2022 11:32 pmI'm using from the 22.04 image via netboot on my N2+ and the colours are very odd. Everything is shades of purple and green. The colours are wrong in both terminal only and gnome desktop. I noticed the same thing on my C4 with the latest petitboot upgrade also, but there it is intermittent between green with light purple text or black with white text. 21.10 works normally, as does coreelec. This has been tested with multiple monitors/TV's and hdmi cables with always the same result.
I feel that this must be a boot configuration issue but I don't know what. Some help would be appreciated.
Code: Select all
sudo apt update
sudo apt install linux-image-5.16.0-odroid-arm64
sudo reboot
The updated kernel seems to correct the problem, although the colour depth is clearly limited. I'll install gnome desktop as per instructions in this thread and post the results for that later.tobetter wrote: ↑Thu Jun 16, 2022 1:00 am@Pud74, does the color problem happens after updating? What's the brand/model of your monitor?
Would you try 5.16 kernel?Code: Select all
sudo apt update sudo apt install linux-image-5.16.0-odroid-arm64 sudo reboot
I found the script on the web, but it did what I needed.
Code: Select all
#!/bin/bash
for i in {0..255} ; do
printf "\x1b[48;5;%sm%3d\e[0m " "$i" "$i"
if (( i =15 )) || (( i > 16 )) && (( (i-15) % 6 == 0 )); then
printf "\n";
fi
done
Code: Select all
#!/bin/bash
for j in {0,30,31,32,33,34,35,36,37} ; do
for i in {0..255} ; do
printf "\e[%sm\x1b[48;5;%sm%2d;%3d\e[%sm\e[0m " "$j" "$i" "$j" "$i"
if (( (i+1) % 16 == 0 )); then
printf "\n";
fi
done
done
printf "\n";
Users browsing this forum: No registered users and 1 guest