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

docs: Add WoeUSB as an alternative tool to burn Windows USB images #1743

Merged
merged 3 commits into from Feb 9, 2018
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 2 additions & 1 deletion docs/USER-DOCUMENTATION.md
Expand Up @@ -15,7 +15,7 @@ images, usually available from the image publishers themselves.
Images known to require special treatment:

- Microsoft Windows (use [Windows USB/DVD Download Tool][windows-usb-tool], or
[Rufus][rufus]).
[Rufus][rufus], or [WoeUSB][woeusb]).
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you remove the ", or" before the Rufus link? It reads a bit odd otherwise

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I suppose the comma-space shouldn't be removed?

Copy link
Contributor Author

@brlin-tw brlin-tw Dec 28, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I've applied the request change (with comma-space kept intact), please review.


- Windows 10 IoT (use the [Windows 10 IoT Core Dashboard][windows-iot-dashboard])

Expand Down Expand Up @@ -224,3 +224,4 @@ platforms.
[rufus]: https://rufus.akeo.ie
[unetbootin]: https://unetbootin.github.io
[windows-iot-dashboard]: https://developer.microsoft.com/en-us/windows/iot/downloads
[woeusb]: https://github.com/slacka/WoeUSB
4 changes: 3 additions & 1 deletion lib/shared/messages.js
Expand Up @@ -60,7 +60,9 @@ module.exports = {
'It looks like you are trying to burn a Windows image.\n\n',
'Unlike other images, Windows images require special processing to be made bootable.',
'We suggest you use a tool specially designed for this purpose, such as',
'<a href="https://rufus.akeo.ie">Rufus</a> (Windows) or Boot Camp Assistant (macOS).'
'<a href="https://rufus.akeo.ie">Rufus</a> (Windows),',
'<a href="https://github.com/slacka/WoeUSB">WoeUSB</a> (Linux),',
'or Boot Camp Assistant (macOS).'
].join(' ')),

missingPartitionTable: _.template([
Expand Down