Skip to content
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

Merged
merged 42 commits into from
Jan 8, 2021
Merged

Make uSD Card Image for the Audio Mini #24

merged 42 commits into from
Jan 8, 2021

Conversation

dack-fe
Copy link
Contributor

@dack-fe dack-fe commented Jan 7, 2021

Merging the build scripts, Dockerfile, and Jenkinsfile into dev for the Audio Mini Linux Image Builder

fe-tdavis and others added 30 commits October 5, 2020 13:33
Removed the curl install
Changed the starting script to the audiomini build script
Copy link
Member

@fe-wickham fe-wickham left a 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

@dack-fe dack-fe requested review from fe-wickham and tvannoy January 8, 2021 16:44
tvannoy
tvannoy previously approved these changes Jan 8, 2021
Copy link
Member

@tvannoy tvannoy left a 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;
Copy link
Member

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.

Copy link
Member

@fe-wickham fe-wickham Jan 8, 2021

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.

Copy link
Member

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.

Copy link
Member

@fe-tdavis fe-tdavis left a 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

@fe-tdavis
Copy link
Member

Without being able to test it

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.

@tvannoy
Copy link
Member

tvannoy commented Jan 8, 2021

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.

@tvannoy tvannoy self-requested a review January 8, 2021 20:00
@tvannoy tvannoy dismissed their stale review January 8, 2021 20:01

Can’t test

@fe-tdavis
Copy link
Member

@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.

👍

@dack-fe
Copy link
Contributor Author

dack-fe commented Jan 8, 2021

What is the status on the symbolic links? Have they been tested? Is it an issue?

@fe-tdavis fe-tdavis closed this Jan 8, 2021
@fe-tdavis fe-tdavis reopened this Jan 8, 2021
@fe-tdavis
Copy link
Member

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 -h flag in the past with my root filesystems and I haven't run into anything odd that I can remember... I don't have a preference if we using the -h or switch to -p if that works.

Copy link
Member

@fe-tdavis fe-tdavis left a 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

@tvannoy
Copy link
Member

tvannoy commented Jan 8, 2021

I misspoke earlier. -p is for preserve permissions, which is default when run as superuser (we do want permissions preserved).

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 build_rootfs.sh would work correctly, though, as I don't recall having any issues with that before.

We can verify if we are removing symlinks by running find with -type l on the original Ubuntu base directory and our modified rootfs.

@fe-wickham
Copy link
Member

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 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.

Copy link
Member

@fe-wickham fe-wickham left a 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

@dack-fe dack-fe merged commit 717ec49 into dev Jan 8, 2021
@dack-fe dack-fe deleted the make_sdcard_dev branch January 8, 2021 22:11
@tvannoy
Copy link
Member

tvannoy commented Jan 8, 2021

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 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.

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 .so libraries.

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants