Khadas Docs

Amazing Khadas, always amazes you!

User Tools

Site Tools


products:sbc:edge2:troubleshooting:windows-install

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Last revision Both sides next revision
products:sbc:edge2:troubleshooting:windows-install [2023/08/09 08:08]
hyphop [Links]
products:sbc:edge2:troubleshooting:windows-install [2023/08/28 23:22]
hyphop [Running the OOBE BypassNRO command]
Line 1: Line 1:
-~~tag> Edge2 Windows~~+~~tag> Edge2 Windows install~~
  
-====== Edge2 Windows install ======+====== Edge2 Windows install ARM UEFI ======
  
 +<WRAP important >
 +During 1st time Windows Setup ''Shift+F10'' type ''oobe\bypassnro'' press Enter to reboot and skip network request [[#running-the-oobe-bypassnro-command]]
 +</WRAP>
  
-===== Build on Linux host  ===== 
  
-WIP: preparing custom scripts for building image+===== OOWOW Online script  ===== 
 + 
 +Simplest way to install Windows to eMMC by [[software/oowow/how-to/online-scripts]] 
 + 
 + 
 + 
 + 
 +===== Build Installation disk =====
  
 https://github.com/hyphop/edge2-win-tools https://github.com/hyphop/edge2-win-tools
  
 +===== Running the OOBE BypassNRO command =====
  
 +  * Start the Window 11 setup.
 +  * When you see the Let's connect you to a network screen with the grayed-out Next button, press ''Shift + F10''. ...
 +  * Now run the following command at the command prompt: ''oobe\BypassNRO'' ...
 +  * After you execute this command, your system will restart.
  
-===== workli =====+  * https://www.google.com/search?q=Shift+F10+type+oobe+by+passnro 
 +  * https://www.reddit.com/r/computers/comments/12brgth/does_anyone_know_how_to_get_off_this_screen_i/
  
  
 +/*
 +
 +===== UEFI bootload on eMMC =====
 +
 +WIP:...
 +
 +```sh write-uefi-bootloader-to-emmc
 +EFI=edge2_UEFI_Release_v0.7.1.img
 +wget https://github.com/edk2-porting/edk2-rk3588/releases/download/v0.7.1/$EFI
 +DISK=${DISK:-/dev/mmcblk0}
 +dd skip=2048 seek=$((0x4000)) count=$((0x4000)) of=$DISK if=$EFI conv=fsync,notrunc
 +```
 +===== workli =====
 +
 +<WRAP important >
 +doesn't work well
 +</WRAP>
 + 
 ```sh  ```sh 
 mkdir -p ~/edge2-win  mkdir -p ~/edge2-win 
Line 25: Line 58:
 boot from USB only  boot from USB only 
  
-''Shift+F10'' type ''oobe\bypassnro''+''Shift+F10'' type ''oobe\bypassnro'' press Enter to reboot and skip network request 
  
  
Line 32: Line 65:
 ===== WOR-flasher ===== ===== WOR-flasher =====
  
-WIP: doesn't work well+<WRAP important > 
 +doesn't work well 
 +</WRAP>
  
 Make installation disk ''/dev/sdX'', Windows 11 latest id ''BID=22621.1702'' Make installation disk ''/dev/sdX'', Windows 11 latest id ''BID=22621.1702''
Line 40: Line 75:
 cd ~/edge2-win cd ~/edge2-win
 git clone https://github.com/Botspot/wor-flasher git clone https://github.com/Botspot/wor-flasher
 +
 +[ -d ~/wor-flasher-files/driverpackage/dwcsdhc ] || \
 +( # add eMMC driver to ..
 +mkdir -p ~/wor-flasher-files/driverpackage/dwcsdhc
 +cd ~/wor-flasher-files/driverpackage/dwcsdhc
 +wget https://github.com/worproject/Rockchip-Windows-Drivers/files/11454708/dwcsdhc.zip
 +unzip dwcsdhc.zip
 +cabextract dwcsdhc.cab
 +mv driver/* .
 +rm *.zip *.cab
 +echo 'dwcsdhc\dwcsdhc.inf' >> ../critical
 +)
  
 DEVICE=/dev/sdX \ DEVICE=/dev/sdX \
Line 50: Line 97:
 ``` ```
  
-===== Links =====+{{local:dev:edge2:edge2-win-install-emmc-disks.jpg?w=640}} 
 + 
 +*/ 
 + 
 +====== Links ======
  
   * https://github.com/buddyjojo/workli   * https://github.com/buddyjojo/workli
Line 61: Line 112:
   * https://learn.microsoft.com/en-us/windows-hardware/manufacture/desktop/winpe-install-on-a-hard-drive--flat-boot-or-non-ram?view=windows-11   * https://learn.microsoft.com/en-us/windows-hardware/manufacture/desktop/winpe-install-on-a-hard-drive--flat-boot-or-non-ram?view=windows-11
   * https://learn.microsoft.com/en-us/windows-hardware/manufacture/desktop/add-a-hardware-recovery-button-to-start-windows-re?view=windows-11   * https://learn.microsoft.com/en-us/windows-hardware/manufacture/desktop/add-a-hardware-recovery-button-to-start-windows-re?view=windows-11
 +  * https://unix.stackexchange.com/questions/667803/fixing-efi-windows-boot-from-linux
 +  * https://woshub.com/how-to-rebuild-bcd-file-in-windows-10/
 +  * https://learn.microsoft.com/en-us/windows-hardware/manufacture/desktop/customize-windows-re?view=windows-11
   * WIP:   * WIP:
 +
 +  * [[/products/sbc/edge2/troubleshooting/edge2-uboot-uefi]]
 +
  
Last modified: 2023/08/28 23:23 by hyphop