Windows 8 build 7822 (fbl_core1_kernel_npc_ext)
Build of Windows 8 | |
OS family | Windows NT |
---|---|
Version number | 6.1 |
Build number | 7822 |
Build revision | 0 |
Architecture | ARM32 (ARMv7) |
Build lab | fbl_core1_kernel_npc_ext |
Compiled on | 2010-09-30 |
Expiration date | |
Timebomb | 2011-02-05 (+128 days) |
SKUs | |
Starter (N, E) Home Basic (N, E) Home Premium (N, E) Enterprise (N, E) Ultimate (N, E) | |
About dialog | |
Windows 8 build 7822 (fbl_core1_kernel_npc_ext) is a build of Windows 8. The original partner drop for both the retail and debug client releases of this build's unstaged ARMv7 installation media and Preinstallation Environment, including software development kits, raw symbol sets, related system firmware and hardware abstraction layers specifically for the Nvidia Tegra 2 system-on-a-chip, were uploaded on 1 September 2024. Despite its lower build number than build 7850, it was compiled eight days after it, as well as one day after build 7851 since most branches skipped from build number 7823 to 7851 in anticipation for the final Milestone 1 build.
Installation[edit | edit source]
QEMU installation guide:
Prerequisites[edit | edit source]
The following requirements used in order to install this build onto a virtual machine are listed below:
- The QEMU v6.1.0 Tegra 2 WoA fork that simulates a real-world Nvidia Tegra 250 development kit, modified to run early Windows on ARM builds
- As of 2024, continuous integration (CI) is currently only set up to automatically produce Windows builds. The fork must be manually compiled from source by using a different operating system like macOS or Linux.
- The required patched EFI firmware capsule images (originally from build 7822), to be placed in the QEMU installation directory in a new folder named
fw
- Two virtual hard disk images (for storing the installation media and the OS install)
Precautions[edit | edit source]
- The emulator may quit when a system reboot is initiated. This is an intentional design decision implemented by Microsoft as restarts are treated as full shutdowns by the Tegra 250 HAL, and cannot be worked around.
- In rare edge cases, Secure Digital MultiMediaCard (SDMMC) emulation may not be reliable and can possibly corrupt the main OS disk partition midway through image deployment or feature staging. Re-attempting the below instructions by first formatting the main OS partition and then modifying the setup BCD store to use one CPU core (located as
EFI\Microsoft\Boot\BCD
in the installation media) via the command below may help significantly improve the chances of a successful installation, at the expense of additional time due to the lack of multi-threading:bcdedit /offline /store M:\EFI\Microsoft\Boot\BCD /set {default} NUMPROC 1
- USB HID device emulation is unstable and will occasionally result in devices failing to register any user inputs. To restore input, switch to the QEMU compatibility monitor (Ctrl+Alt+2) and run the following commands:
device_del kbd device_add usb-kbd,id=kbd
- For builds prior to 7957 (excluding builds 7792 and 7822), it is critical that the Windows Setup boot image be substituted with the Windows Preinstallation Environment image from the original partner drop (ordinarily located in the
winpe
orwoape
directories), as the Setup boot image does not contain the required hardware abstraction layer (HAL) extensions, and will therefore cause the operating system to immediately bugcheck with codeHAL_INITIALIZATION_FAILED
as soon as the boot sequence starts. - This guide is not for build 7915 due to it being designed to run on Texas Instruments OMAP4 and won't run on the Tegra 2 QEMU. It is required to use QEMU-woa instead.
Instructions[edit | edit source]
These instructions assume that the user has an elevated command prompt window open.
Create the needed virtual disk images through the diskpart
utility by running the below script; they will be created under a directory in the C: drive named ARM8
. The INSTALL
, MainOS
and EFI system partitions will be respectively mounted under drive letters F and P.
create vdisk file="C:\ARM8\Setup.vhd" maximum=4096 type=expandable
select vdisk file="C:\ARM8\Setup.vhd"
attach vdisk
convert gpt
create partition primary
format quick fs=fat32 label=INSTALL
assign letter=M
create vdisk file="C:\ARM8\Main.vhd" maximum=65536 type=expandable
select vdisk file="C:\ARM8\Main.vhd"
attach vdisk
convert gpt
create partition efi size=100
format quick fs=fat32 label=EFIESP
create partition primary
format quick fs=ntfs label=MainOS
assign letter=P
exit
Depending on the users' desired build flavor (free or checked), copy the contents of the installation media over to the INSTALL
partition. Extract the needed EFI boot manager (\Windows\Boot\EFI\bootmgfw.efi
) from the Windows PE or Windows Setup boot image to INSTALL
, as EFI\Boot\bootarm.efi
.
Eject all currently attached virtual disks from the machine, and paste and run the contents of the below script onto a batch file within the QEMU installation directory, replacing FWType
with either the 78xx
variant firmware (for early builds up to 7898) or the multi
variant (for builds 7898 through build 7996):[a]
set BL=".\fw\HARMONY.fd.FWType"
set MAIN="C:\ARM8\Main.vhd"
set SETUP="C:\ARM8\Setup.vhd"
qemu-system-arm ^
-M tegra2-qemu -m 1G -accel tcg,thread=multi ^
-bootloader %BL% ^
-device usb-tablet,id=mouse -device usb-kbd,id=kbd ^
-drive if=sd,index=1,format=vpc,file=%SETUP% ^
-drive if=sd,index=0,file=%MAIN% ^
-serial null -nic none ^
-s ^
start D:\sources\setup.exe
Immediately after completing the first phase of setup, remove the SD slot for the installation media and boot into the operating system by using the below batch script configuration:[a]
set BL=".\fw\HARMONY.fd.FWTYPE"
set MAIN="C:\ARM8\Main.vhd"
qemu-system-arm ^
-M tegra2-qemu -m 1G -accel tcg,thread=multi ^
-bootloader %BL% ^
-device usb-tablet,id=mouse -device usb-kbd,id=kbd ^
-drive if=sd,index=0,file=%MAIN% ^
-serial null -nic none ^
-s ^
Continue installing the operating system through normal means.
Bugs and quirks[edit | edit source]
Boot process[edit | edit source]
The ACPI driver (acpi.sys
) will bugcheck if a Multiple APIC Description Table (required by build 7915 and later) is present.
Shutdown and reboot[edit | edit source]
Shutting down freezes the OS, while rebooting shuts it down instead.
Windows Media Player[edit | edit source]
The shortcut to the Windows Media Player application erroneously points to its WoW64 counterpart, which only exists in x64 releases of Windows at this point in development.
Notes[edit | edit source]
- ↑ 1.0 1.1 If utilizing the quad-core variant of the Tegra 2 WoA fork, the machine configuration in the batch script must be modified to address 2 GB of RAM, and the patched
2g
EFI firmware capsules must also be used to start up the virtual machine. Themulti2g
combination can be used to immediately boot into builds 8020 through late 81xx; if this combination is not being used, then necessary registry modifications against theSYSTEM
hive to load Tegra 2 HAL extension IDsVEN_ra2.&DEV_0002
(HalExtTegra2.dll
) andVEN_ra2.&DEV_0003
(HalExtTegra2Dma.dll
; in later builds,HalExtTegraDma.dll
) are required.