-
-
Notifications
You must be signed in to change notification settings - Fork 82
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
Added ability to set the TYPE/CREATOR resource fork attributes of file(s) inside newly-created cd-rom ISO images of type HFS #1377
Conversation
…e(s) inside newly-created cd-rom ISO images of type HFS
… modified web.py to find it at that location
# | ||
# The mapping entries below are derived from | ||
# https://github.com/Netatalk/netatalk/blob/branch-netatalk-2-3/config/AppleVolumes.system | ||
# , which is under a GNU GPL license. |
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 think we can remove this particular line about GNU GPL, since it may imply the mapping entries fall under this license. The PiSCSI codebase is distributed under BSD-3-Clause.
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.
Done.
python/web/src/web.py
Outdated
# See more at https://linux.die.net/man/1/genisoimage | ||
iso_args = ["-hfs", "-map", str(genisoimage_hfs_resource_fork_map_file_path)] | ||
logging.info( | ||
"Found and using the genisoimage hfs map file at %s .", |
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.
Nitpick: Why is there two spaces between %s and .? ;)
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.
Fixed.
It's bizarre that the backend_tests job is failing here.
I wonder if the permissions model changed for branches originating from forks...? |
Regrading |
Oh yes, that was it. Nice catch. I also ran a test from my own fork which passed: #1382 |
SonarCloud Quality Gate failed. 0 Bugs 0.0% Coverage Catch issues before they fail your Quality Gate with our IDE extension SonarLint |
These days once I've locked down a changeset in a PR after a few roundtrips of changes, I like to sqash the commits in the PR branch locally and then force-push a "clean" commit (or commits). It helps avoid unwanted changes slipping through. |
…e(s) inside newly-created cd-rom ISO images of type HFS (#1377) * Added ability to set the TYPE/CREATOR resource fork attributes of file(s) inside newly-created cd-rom ISO images of type HFS * Added file genisoimage_hfs_resource_fork_map.txt under python/web and modified web.py to find it at that location
See #1376