Closed pirateradiohack closed 1 year ago
Try starting stage 3 manually: ./build.sh 3
Indeed, running the missing stages manually did work and created an image. Thanks.
Specifically I did:
./build.sh 3
./build.sh 4
./build.sh 5
Is it just happening to me or is it a common bug you are planning to fix?
This will be fixed.
Should be fixed with 4a0fe81.
Thanks for the quick update.
I have tried with https://github.com/jcorporation/myMPDos/commit/4a0fe814307aa0962e1a82dea911fb9ea0f69bf5 but in my case it did not produce an image. It did not return any error message though.
The tmp
directory has been created, with a aarch64
directory within it. But no sign of the images
directory.
I also tried to run the different stages independently but to no avail.
I'm not sure what went wrong. Should I try it in a different way?
No error and no other output? Let me test it again locally. You could run it with bash -x ./build.sh b
to get debug output.
OK. I have launched the build with bash -x ./build.sh b
. Let's see where it gets us.
By the way, I know it's a bit off-topic, but I don't know where else to ask. I am trying to build the image a bit out of curiosity, but also because I would like to produce the same image but pre-loaded with a few Python modules (along with their dependencies) that I need to run my project. Do you think building the image with some modifications is the best way (and what are your recommendations, if any as to how best to modify it?). Or do you recommend a completely different approach (like modifying a pre-built image somehow?)
Meanwhile, the build has finished successfully:
+ echo 'Image myMPDos-aarch64-1.1.0-20221229.img created successfully'
Image myMPDos-aarch64-1.1.0-20221229.img created successfully
+ '[' false = true ']'
+ echo ''
+ echo 'Next step is to burn the image to a sd-card and'
Next step is to burn the image to a sd-card and
+ echo 'create the bootstrap.txt file.'
create the bootstrap.txt file.
+ echo 'There are samples in the image.'
There are samples in the image.
+ echo ''
+ exit 0
But yet no images
directory and no sign of the file in my whole home
.
I will try to find a sign in the output.
By the way, I know it's a bit off-topic, but I don't know where else to ask.
Simply open a new issue.
You can install extra software at bootstrap time with the the EXTRA_SOFTWARE
config option.
But yet no images directory and no sign of the file in my whole home.
I tested it again and it works on my local setup. The folder images
should appear in the same folder as the build.sh
script resides.
I have completely removed the myMPDos folder from my FS and cloned it again, just in case. Now when I run the build there is a images
directory created with the image inside. Great! Seems to work.
Great, I saw that the documentation on building was a bit outdated. I will update it.
Thanks for your efforts. This project is awesome!
I think I have followed the steps and installed the dependencies (this is on Arch Linux), but yet when trying to build the image I get the following output:
Do you have any hint on what I should be looking for? Thanks.