Fix a few typos, add more information to readme

This commit is contained in:
mkuba50 2018-12-24 22:16:28 +01:00
parent d7c5d16835
commit 4e043f4403
2 changed files with 5 additions and 5 deletions

View File

@ -1,5 +1,5 @@
#!/bin/bash #!/bin/bash
scriptName="UUP Converter v0.1.0" scriptName="UUP Converter v0.1.1"
editions="analogonecore editions="analogonecore
andromeda andromeda
@ -347,7 +347,7 @@ echo ""
echo -e "$infoColor""Creating ISO structure...""$resetColor" echo -e "$infoColor""Creating ISO structure...""$resetColor"
wimlib-imagex apply "$firstMetadata" 1 ISODIR --no-acls 2>/dev/null wimlib-imagex apply "$firstMetadata" 1 ISODIR --no-acls 2>/dev/null
if [ $? != 0 ]; then if [ $? != 0 ]; then
echo -e "$errorColor""Failed to create ISODIR structure""$resetColor" echo -e "$errorColor""Failed to create ISO structure""$resetColor"
cleanup cleanup
exit 1 exit 1
fi fi

View File

@ -12,8 +12,8 @@ Insider version downloaded from UUP dump.
``` ```
###### Compression options: ###### Compression options:
* wim - standard compression * wim - standard wim compression (`/Compress:max` in DISM)
* esd - solid compression * esd - solid esd compression (`/Compress:recovery` in DISM)
### Usage examples ### Usage examples
* `./convert.sh` - starts conversion using files from UUPs directory and * `./convert.sh` - starts conversion using files from UUPs directory and
@ -29,7 +29,7 @@ Insider version downloaded from UUP dump.
This script uses the following commands to do its work: This script uses the following commands to do its work:
* cabextract - to extract cabs * cabextract - to extract cabs
* wimlib-imagex - to export files from metadata ESD * wimlib-imagex - to export files from metadata ESD
* chntpw - to modify registry of first index boot.wim * chntpw - to modify registry of first index of boot.wim
* genisoimage - to create ISO image * genisoimage - to create ISO image
If you use Debian or Ubuntu you can quickly install these using the following If you use Debian or Ubuntu you can quickly install these using the following