-
Notifications
You must be signed in to change notification settings - Fork 47
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
Multi-distribution page #67
Conversation
- grouped building steps per distribution - sailfish buildinng fix
content/documentation/PinePhone_Pro/Software/Multi-distribution_image.adoc
Outdated
Show resolved
Hide resolved
[source,shell] | ||
---- | ||
1 sudo dd if=/dev/zero of=/dev/$DEVICE status=progress bs=32768 count=1 | ||
2 sudo dd if=/dev/zero of=/dev/$DEVICE status=progress bs=32768 count=$(expr $(lsblk -bno SIZE /dev/$DEVICE | head -1) \/ 32768) |
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.
The "1" and "2" in front are not really good syntax. Try to only have parts of the command in the line, and "$" if it is executed as regular user and "#" if it is executed as root.
content/documentation/PinePhone_Pro/Software/Multi-distribution_image.adoc
Outdated
Show resolved
Hide resolved
---- | ||
|
||
Only for Sailfish distribution, you ought to copy the extracted files directly into the device: | ||
==== SailfishOS distribution needs different commands. |
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.
Same issue as above
content/documentation/PinePhone_Pro/Software/Multi-distribution_image.adoc
Outdated
Show resolved
Hide resolved
content/documentation/PinePhone_Pro/Software/Multi-distribution_image.adoc
Show resolved
Hide resolved
content/documentation/PinePhone_Pro/Software/Multi-distribution_image.adoc
Outdated
Show resolved
Hide resolved
thanks for your tips. I hope I didn't miss any in the revision I just sent. |
The "command 1 or command 2" part could be improved (for example by separating those, instead of writing both together) but seems fine so far. |
thanks a lot for your help. I really appreciated your teaching. |
@x1y, as mentioned here are some changes I'd like to submit. thanks