-
Notifications
You must be signed in to change notification settings - Fork 2
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
Make uSD Card Image for the Audio Mini #24
Conversation
…cript for making image for audiomini
…tils into make_sdcard_dev
Removed the curl install Changed the starting script to the audiomini build script
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good overall but it'd be nice to see the couple changes I mention in my other comments before merge
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Without being able to test it, it looks good to me. Glad to see the tool by robseb being used.
else | ||
if [ -f frost_rootfs.tar.gz ]; then | ||
echo 'Using the local Root File System.' | ||
tar -xhzvf frost_rootfs.tar.gz; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does this preserve symbolic links? I guess if the final image works, then it doesn't matter.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't believe it does given the -h
is described as follow symlinks; archive and dump the files they point to
(it does the same for hardlinks as well).
I feel like presently we are using the -h
out of necessity because I recall problems when extracting without that flag but I would have to investigate further to know what problems we are running into without it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah, I see. So links are just being replaced by the files.
From my recollection, things will be messed up, and probably won't boot, if links are ignored. I recall running into issues where things like /bin/sh
couldn't be found, leading to kernel panics.
I believe -p
preserves symbolic links, which would be an alternative to -h
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I tested the full process and the image built and ran successfully although
I'm going to be a bit of a stickler here... If you are going to review our pull requests, please don't approve something you can't test. |
@fe-tdavis Fair enough. I will only make comments without explicit approval if I am not able to test. I think it's a good policy to make sure tests pass before merging. I am happy to keep reviewing PRs, especially when my review is requested. |
👍 |
What is the status on the symbolic links? Have they been tested? Is it an issue? |
I did a quick test with the system as is and it appears to work. I've used the |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Works as is, but if we change to the -p
flag we should do further testing
I misspoke earlier. I think it is preferable to keep the symlinks rather than dereferencing them, but I don't know if dereferencing causes any practical problems. Judging by reports so far, it doesn't appear to be an issue. My thought is that if symlinks are there in the original Ubuntu base archive, there is probably a reason, so we should keep the symlinks. I would think using the same tar arguments that we use in We can verify if we are removing symlinks by running |
I am confident it is preferable to preserve symlinks, hence I have created #25 but I don't believe it is worth stopping this from being merged because there isn't much reason for symlinks to break the image as built from working. What I would be concerned about is future configuration and maintenance of a running system because something may be setup currently with symlinks such that it only updates 1 file and without the symlinks it won't update the other files. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
With the minor issues I raised addressed, this all looks great now
Yes, exactly. I only see it being an issue if (most likely when) a package update updates a file (library or executable, most likely) that is supposed to be the target of a symlink. Symlinks are really common with I agree it isn't worth holding this PR up, as the image does work as is. Fully testing and getting symlinks preserved will take some while because the rootfs building/flashing operations are quite slow. |
Merging the build scripts, Dockerfile, and Jenkinsfile into dev for the Audio Mini Linux Image Builder