Giter Site home page Giter Site logo

Comments (10)

theypsilon avatar theypsilon commented on August 30, 2024

Hi @wiggy808 , thanks for sharing your feedback.

I would like to understand in which cases that error is happening since I couldn't reproduce it so far.

from update_all_mister.

wiggy808 avatar wiggy808 commented on August 30, 2024

I received the error when I did the update_all today for the first time, I uploaded just the update_all.sh and ran it from the OSD menu. It was the first time I ran the update_all.sh, and had just ran the update.sh the day before from a fresh build. 
I also created an update_all.ini that I had altered for my liking (attached as txt since i couldnt upload .ini
update_all.txt
).

The error I received was "syntax error unexpected then...". The "then" is after the "if" condition in the update_all.sh, which doesn't have the double brackets to test the file existence (-F) so it errors. 
I think an easy fix is to add the double brackets around the if condition for checking the file's existence.

from update_all_mister.

theypsilon avatar theypsilon commented on August 30, 2024

Ok, so to make it clear. It is the very first day you use update_all, meaning you never used it before in your MiSTer, right?

Is your MiSTer a fresh installed also? Or when did formatted your MiSTer SD card the last time?

I just did a fresh install on my MiSTer with the INI file you provide and update_all.sh from here: https://raw.githubusercontent.com/theypsilon/Update_All_MiSTer/master/update_all.sh

And I couldn't reproduce the error. So my wild guess is that it might be caused by you having an old Linus version. If that's the case, I would really love to know for sure, so I can consider that when coding.

The syntax error message I think is misleading. That if ! ${SCRIPT_PATH} ; then statement should be fine if ${SCRIPT_PATH} renders a command that returns 0 or 1, which should be the case here. Note that the single bracket IF syntax is a shortcut to the test command in bash after all, and single bracket IFs are all over the place.

I'm very intrigued by your error. If you don't mind, I would love to investigate it further. I hope you can provide me a little more context, so I can track down the root cause. Thank you!

from update_all_mister.

theypsilon avatar theypsilon commented on August 30, 2024

@wiggy808 now that I think it further, your error could also mean that your connection had some issue during the first curl download. That could be tested by trying a second and a third time without performing any modification.

from update_all_mister.

wiggy808 avatar wiggy808 commented on August 30, 2024

@theypsilon

Thanks for the response, I think you hit on something I didn't consider. But I'll respond as detailed as i can, be prepared, this may be lengthy, haha.

" It is the very first day you use update_all, meaning you never used it before in your MiSTer, right?"
Correct

"Is your MiSTer a fresh installed also? Or when did formatted your MiSTer SD card the last time?"
This part was something that kinda got me thinking today about your second response and maybe a key to the issue:

"@wiggy808 now that I think it further, your error could also mean that your connection had some issue during the first curl download. That could be tested by trying a second and a third time without performing any modification."

I'm not convinced a curl issue occurred, (only cause I was watching it, and it seemed to be downloading just fine), but definitely possible. But what got me thinking is the "fresh installed" and "formatted" comments.

My MiSTer SD card came pre-formatted from UltimateMister when I ordered it. My "fresh" install was a misnomer, I basically wiped the file system, not the underlying OS on the SD card in May. I was having issues manually installing rbf / mra / rom etc. when I came across an article about the scripts... So having made a file backup (not image backup) of the original UltimateMister SD card, I removed everything under /media/fat and recopied the file backup of the fat directory back to /media/fat. It was then that I ran the update.sh script, took a long time but seemed to go without a hitch, hard to tell honestly if there were errors since it scrolled so fast.

Afterwards, I was noticing some disconnection in the updates for cores between jotego and the main ones. Doing more research, and talking to Discord folks on the channel, they indicated I needed to run the update_all.sh script. I read up on it here on github, downloaded it, created an update_all.ini (basically changed a few true / false items, no biggie), uploaded both to the SD card, then ran the update_all.sh on the mister and saw the error on the bottom, after the echo "Update All 1.2 finished. Your MiSTer..." message was displayed.

I did run the update_all again just now, with no modifications since we talked last night, and no error this time. I'm assuming the update_all.log is not appended but newly written each time as it had the current date, and only today's results. Side suggestion but maybe create each update_all.sh result log with update_all_$(date +"%m_%d_%Y").log so you get one for each time its run, wishful thinking =)

Let me know what else I can do to help you recreate the issue, but I most likely had an older Linus version. Currently, I'm on 4.19.0-socfpga-r1 but I'm not sure what I may have been on before the update or update_all scripts were run. I'm not able to find a boot dir or a grub config or rpm, etc, lol so not able to see what other kernels might be installed or were installed previously.

Thanks again for your help, greatly appreciated!

from update_all_mister.

theypsilon avatar theypsilon commented on August 30, 2024

Now that you said that the latest run gave you no error, makes me think more that you ran into a connectivity issue.

Do you use MiSTer with wifi? Sometimes the problem is the wifi dongle catching a poor signal. I would doublecheck with ethernet connetion if you are running into frequent issues to make sure that the problem is not caused by the wifi connection.

If your Linux installation was from this year, there should be no issues related to that most probably. In any case, you could try formatting and installing from scratch, but I don't think that's needed at the moment.

About storing old logs. The problem is that they are actually heavy files, they could eat a lot of space of those users that update frequently. But maybe storing latest 10 logs is good idea. I will think about it.

from update_all_mister.

wiggy808 avatar wiggy808 commented on August 30, 2024

No wifi use here, the transfer speeds are never as good or reliable as ethernet like yous said, so I've only used ethernet on my MiSTer.

The image was from May (when I bought it), but I don't know if the guys at UltimateMister use an older image when they ship the sd cards out or not.

I attached something that I tested on my MiSTer that worked to keep the last 10 logs. The top is for creating my 13 test log files of receding dates, the bottom is the script that will remove all but the latest 10 files. If ya like it, can include in image. I do alot of bash scripting on the side so I can always help with more if ya like, love helping the gaming community, just hit me up anytime.
clean_update_all_log.txt

from update_all_mister.

theypsilon avatar theypsilon commented on August 30, 2024

Hey @wiggy808 did you ever have this problem again?

In case you didn't, I think we should close this issue, and maybe open another one about the 10 logs feature.

from update_all_mister.

wiggy808 avatar wiggy808 commented on August 30, 2024

from update_all_mister.

theypsilon avatar theypsilon commented on August 30, 2024

I'm closing this as the issue doesn't happen more, and the mentioned code is gone.

The logs feature can be discussed here: #24

from update_all_mister.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.