-
Notifications
You must be signed in to change notification settings - Fork 19
Sorry for so many commits i'm too lazy to squash #12
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
Merged
Merged
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
62cabd4
Guides and status
tvorogo e6b265f
fix
tvorogo 5e2b187
Status add device, codename
tvorogo 28dba4b
Guide, fixes
tvorogo b1b5abe
Fix typos
tvorogo 697a2f2
Add page 'Disable Secure Boot'
tvorogo d83a869
Drivers, fix typos
tvorogo e778ef5
My typos
tvorogo 757c1d9
Add ## for navigations
tvorogo a55f269
Merge branch 'main' of https://github.com/tvorogo/DocumentWebsite
tvorogo 685059d
Update driver download instructions in InstallDrivers.md
tvorogo 3a1a0eb
Update InstallationGuides/WindowsInstallation.md
tvorogo 916a117
fix typis
tvorogo 5cd50a5
BlaBlaBla
tvorogo e20e636
Update Introduction/organization.md
remtrik 795cd36
Update PortingStatus.md
remtrik File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
-637 Bytes
(99%)
InstallationGuides/Resources/InstallDrivers/HowToDownload2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,77 @@ | ||
| ## Disable SecureBoot Guide | ||
|
|
||
| :::warning | ||
| This process can permanently brick your device if done incorrectly. | ||
| Read every step carefully and DO NOT modify partitions unless explicitly instructed. | ||
| ::: | ||
|
|
||
| :::warning | ||
| DO NOT ERASE, CREATE OR MODIFY ANY PARTITION IN DISKPART. | ||
| ONLY ASSIGN A DRIVE LETTER TO ESP(DEVICE-NAME). | ||
| ::: | ||
|
|
||
|
|
||
| ## Start diskpart in CMD: | ||
|
|
||
| ``` | ||
| diskpart | ||
| ``` | ||
| - Find ESP(DEVICE-NAME) partition: | ||
| ``` | ||
| list volume | ||
| ``` | ||
| - Replace $ with the actual volume number of ESP(DEVICE-NAME): | ||
| ``` | ||
| select volume $ | ||
| assign letter Y | ||
| ``` | ||
| - Exit diskpart: | ||
| ``` | ||
| exit | ||
| ``` | ||
|
|
||
| ## Enable Test Signing | ||
| ``` | ||
| bcdedit /store Y:\EFI\Microsoft\BOOT\BCD /set "{default}" testsigning on | ||
| ``` | ||
|
|
||
| ## Disabling recovery | ||
| ``` | ||
| bcdedit /store Y:\EFI\Microsoft\BOOT\BCD /set "{default}" recoveryenabled no | ||
| ``` | ||
|
|
||
| ## Disabling integrity checks | ||
| ``` | ||
| bcdedit /store Y:\EFI\Microsoft\BOOT\BCD /set "{default}" nointegritychecks on | ||
| ``` | ||
|
|
||
| ## Remove SiPolicy (Critical) | ||
|
|
||
| > If SecureBoot is being disabled on an already installed system, delete: | ||
| ``` | ||
| del Y:\EFI\Microsoft\Boot\SiPolicy.p7b | ||
| ``` | ||
| Failure to delete this file will result in boot failure. | ||
|
|
||
| - Remove ESP Drive Letter | ||
| ``` | ||
| mountvol Y: /d | ||
| ``` | ||
| > If this fails, ignore it. The phantom drive will disappear after reboot. | ||
|
|
||
| ## Flash NoSecureBoot UEFI | ||
|
|
||
| - Reboot to bootloader: | ||
| ``` | ||
| adb reboot bootloader | ||
| ``` | ||
| - Replace path\to\NoSecureboot.img with your actual image path: | ||
| ``` | ||
| fastboot flash boot path\to\NoSecureboot.img | ||
| ``` | ||
| - Reboot | ||
| ``` | ||
| fastboot reboot | ||
| ``` | ||
|
|
||
| # SecureBoot is now disabled. | ||
remtrik marked this conversation as resolved.
Show resolved
Hide resolved
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,2 +1,107 @@ | ||
| # General Windows Installation Guide | ||
| ## TODO | ||
| # Windows Installation Guide | ||
|
|
||
|
|
||
| :::warning | ||
| This process can permanently brick your device if done incorrectly. | ||
| Read every step carefully and DO NOT modify partitions unless explicitly instructed. | ||
| ::: | ||
|
|
||
| --- | ||
|
|
||
| ## Diskpart | ||
|
|
||
| :::danger | ||
| DO NOT ERASE, CREATE OR MODIFY ANY PARTITION IN DISKPART. | ||
| THIS CAN ERASE YOUR ENTIRE UFS OR BREAK FASTBOOT. | ||
| YOUR DEVICE MAY BECOME PERMANENTLY BRICKED. | ||
| ::: | ||
|
|
||
| 1. Open Command Prompt as Administrator. | ||
|
|
||
| 2. Start diskpart: | ||
|
|
||
| ``` | ||
| diskpart | ||
| ``` | ||
|
|
||
| 3. Find the Windows partition: | ||
|
|
||
| ``` | ||
| list volume | ||
| ``` | ||
|
|
||
| - Replace $ with the actual volume number of WIN(DEVICE-NAME): | ||
|
|
||
| ``` | ||
| select volume $ | ||
| assign letter F | ||
| ``` | ||
|
|
||
| 4. Find the ESP partition: | ||
|
|
||
| ``` | ||
| list volume | ||
| ``` | ||
|
|
||
| > Replace $ with the actual volume number of ESP(DEVICE-NAME): | ||
|
|
||
| ``` | ||
| select volume $ | ||
| assign letter Y | ||
| ``` | ||
|
|
||
| 5. Exit diskpart: | ||
|
|
||
| ``` | ||
| exit | ||
| ``` | ||
|
|
||
| --- | ||
|
|
||
| ## Installing Windows | ||
|
|
||
| You can download ISO of Windows from [uupdump](https://uupdump.net/). But you may need to run a script to generate ISO files. | ||
| > Alternatively there is a [site](https://github.com/ArKT-7/woawin) where you can download premade ESD images. We do not guarantee its safety. Please decide which method by yourself. | ||
|
|
||
|
|
||
|
|
||
| > Replace path\to\install.esd with your actual image path: | ||
|
|
||
| ``` | ||
| dism /apply-image /ImageFile:path\to\install.esd /index:6 /ApplyDir:F:\ | ||
| ``` | ||
|
|
||
| > If you get Error 87, check the correct index: | ||
|
|
||
| ``` | ||
| dism /get-imageinfo /ImageFile:path\to\install.esd | ||
| ``` | ||
|
|
||
| > Then replace index:6 with the correct index of Windows | ||
|
|
||
| --- | ||
|
|
||
|
|
||
| ## Create Windows Bootloader | ||
|
|
||
| >If an error appears like: | ||
| "Failure when attempting to copy boot files" | ||
|
|
||
| - Reopen diskpart and assign a new letter to the ESP partition (ESP(DEVICE-NAME)), then use that letter instead of Y. | ||
|
|
||
| - Create boot files: | ||
|
|
||
| ``` | ||
| bcdboot F:\Windows /s Y: /f UEFI | ||
| ``` | ||
|
|
||
| - Remove ESP drive letter: | ||
|
|
||
| ``` | ||
| mountvol Y: /d | ||
| ``` | ||
|
|
||
| > If this fails, ignore it. The phantom drive will disappear after reboot. | ||
|
|
||
| --- | ||
|
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,38 @@ | ||
| ## UEFI porting status | ||
| - mu_aloha_platforms [README](https://github.com/Project-Aloha/mu_aloha_platforms#target-list) | ||
|
|
||
| # Device porting status | ||
| > In this page you can find porting status for devices. | ||
| ------------------------------------------------------- | ||
|
|
||
|
|
||
| ## Snapdragon 855/860 - SM8150 | ||
| | Vendor | Device | Codename | Status | | ||
| |---------|-------------|-----------|-----------------------------------------------------------------------------------------------------------| | ||
| | Xiaomi | Mi 9 | cepheus | [Device status](https://github.com/qaz6750/XiaoMi9-Drivers/blob/main/Status.md) | | ||
| | Xiaomi | K20 Pro | raphael | [Device status](https://github.com/new-WoA-Raphael/woa-raphael/blob/main/guide/status.md) | | ||
| | Xiaomi | Pad 5 | nabu | [Device status](https://github.com/erdilS/Port-Windows-11-Xiaomi-Pad-5/blob/main/guide/English/status.md) | | ||
| | Xiaomi | POCO X3 PRO | vayu | [Device status](https://github.com/WaLoVayu/POCOX3Pro-Windows-Guides/blob/main/en/status.md) | | ||
| | LG | G8 | alphaplus | [Device status](https://github.com/n00b69/woa-alphaplus/blob/main/guide/status.md) | | ||
| | LG | G8s | betalm | [Device status](https://github.com/n00b69/woa-betalm/blob/main/guide/status.md) | | ||
| | LG | G8x | mh2lm | [Device status](https://github.com/n00b69/woa-mh2lm/blob/main/guide/status.md) | | ||
| | LG | V50 | flashlmdd | [Device status](https://github.com/n00b69/woa-flashlmdd/blob/main/guide/status.md) | | ||
| | LG | V50s | mh2lm5g | [Device status](https://github.com/n00b69/woa-mh2lm5g/blob/main/guide/status.md) | | ||
| | OnePlus | 7 Pro 4G | guacamole | [Device status](https://github.com/n00b69/woa-op7/blob/main/guide/status.md) | | ||
| | OnePlus | 7T Pro 4G | hotdog | [Device status](https://github.com/n00b69/woa-op7/blob/main/guide/status.md) | | ||
| | Samsung | Galaxy Fold | winner | [Device status](https://github.com/n00b69/woa-winner/blob/main/guide/status.md) | | ||
| ------------------------------------------------------------------------------------------------------------------------------------------------- | ||
|
|
||
|
|
||
| ## Snapdragon 720G/7c/7c Gen 2 - SM6250/SM7125/SC7180 | ||
| | Vendor | Device | Codename | Status | | ||
| |---------|-------------|-----------|-----------------------------------------------------------------------------------------------------------| | ||
| | Xiaomi | Note 9S | miatoll | [Device status](https://github.com/woa-miatoll/Miatoll-Guide/blob/main/guide/status.md)| | ||
| ------------------------------------------------------------------------------------------------------------------------------------------------- | ||
|
|
||
|
|
||
| ## Snapdragon 730/732/732G - SM7150 | ||
| | Vendor | Device | Codename | Status | | ||
| |---------|-------------|-----------|-----------------------------------------------------------------------------------------------------------| | ||
| | Xiaomi | POCO X3 NFC | surya | [Device status](https://github.com/woa-surya/POCOX3NFC-Guides/blob/main/Status-en.md) | | ||
| ------------------------------------------------------------------------------------------------------------------------------------------------- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,2 +1,2 @@ | ||
| # Project-Aloha | ||
| > Project-Aloha is a organization gathered people who are porting woa to SM8150 and other newer silicons. | ||
| > Project-Aloha is an organization of people porting WoA to SM8150 and other SoCs. |
This file was deleted.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.