-
Notifications
You must be signed in to change notification settings - Fork 250
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update image in Raspberry Pi Imager #497
Comments
Latest stable was released on 2023-10-22 (tagged). but it was built on 2022-03-07. As you can see in the release: The nightly builds are built on demand (I press a "build" button on the Jenkins instance that builds). I just started a nightly build now so you have something more recent. There was an RC out ages but it got stuck since I was really busy in my life You can see it took a while here: If you want to help update it then really testing and confirming an RC is good enough is what is missing. No on on the latest RC said "this is good, I am happy with it". which meant I didn't know if its OK to release. I could make a nightly, make an RC issue and we could test it to confirm its good enough to release and have 0.14.0. |
Ok, so I'm waiting from your Nightly Release link to test it o PRi2, or maybe I can already download it from somewhere? |
Don't known your release process, but maybe we can create some pre-release candidates right here, on github (workflow)? So anybody can download & test it... |
Hey @nikolaev-rd. When a good build is out I publish an issue, for example this one: And also the image would get uploaded to rpi-imager using this script: Then you and others can test it. Recuarding moving to github actions. There is already a github action workflow run here: It might work if someone gives it more love and care than I have the time. The last build succeeded and you can test it. Also I added this answer to the FAQ so people can know what is the CI/CD process here. |
I tested this one: 2023-05-12_2023-05-03-fullpageos-bullseye-armhf-lite-0.13.0.zip — works on PRi 2. |
Just tested 2024-01-12_2023-12-11-fullpageos-bookworm-armhf-lite-0.14.0.zip on RPi 4, and there is no file
|
Try |
yes, found it. thanks! |
It seems like something went wrong:
Error because in script #!/bin/bash
USER_AGENT="Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36"
while true
do
if [[ $(curl -sL -b cookiefile -w "%{http_code}\\n" -H "user-agent: ${USER_AGENT}" "$(/home/pi/scripts/get_url)" -o /dev/null) =~ ^([23][0-9]{2,2}|401)$ ]] || grep -q disabled "/boot/check_for_httpd" ; then
xdotool mousemove 9000 9000
/home/pi/scripts/start_chromium_browser
fi
sleep 1
done used script #!/bin/bash
SERIAL=`cat /proc/cpuinfo | grep -i '^Serial' | awk '{ print $3 }'`
URL="$(head -n 1 /boot/fullpageos.txt | sed -e "s/{serial}/${SERIAL}/g")"
echo $URL And yes, file sudo ln -s /boot/firmware/fullpageos.txt /boot/fullpageos.txt
sudo ln -s /boot/firmware/check_for_httpd /boot/check_for_httpd |
I'll add a fix for that |
Hello, it's still not working for me. Is there a new version? Black screen and the cursor flashes wildly. |
Did you try the full script as workaround? It's worked for me (PRi 4) with 2024-01-12_2023-12-11-fullpageos-bookworm-armhf-lite-0.14.0.zip: FULLPAGEOS_BOOT_FILES=(
"fullpageos.txt"
"fullpagedashboard.txt"
"check_for_httpd"
"splash.png"
)
for FILE in "${FULLPAGEOS_BOOT_FILES[@]}"
do
[ ! -e "/boot/${FILE}" ] && sudo ln -s "/boot/firmware/${FILE}" "/boot/${FILE}"
done |
I've just tried it again, but it's always the same result on the RPi 5, but I'm not that familiar with it, so I'm sure I haven't made any mistakes. If I could get a complete image, I would test it again on the RPi 5. |
I don't have RPi 5, don't know how to investigate you problem. I think @guysoft can create test build with my fixes — maybe it fix you problem. |
I tried that, but I can't manage to create an image. I have never done that before. |
As of today: |
@pauldogg thinks for reporting will look in to it |
@pauldogg Works for me on the stable and nightly - what are you testing? what version of fullpageos and what version of rpi imager? |
Ok reproduced, will make a new nightly that should fix it. |
Fixed, I also updated the CI/CD to handle this better. Just tested and the 19/02/2024 image downloads |
Last stable release of FPO was in 2023-10-22 (0.13.0), but in Imager now is very old image:
Nightly builds also outdated.
How I can help to update it?
The text was updated successfully, but these errors were encountered: