Gunch

Results 14 comments of Gunch

https://wiki.osdev.org/PS/2_Keyboard#Scan_Code_Set_1 https://wiki.osdev.org/PS/2_Keyboard#Scan_Code_Set_2 Scancode Set 2: - Pause/Break - 0xE1 0x14 0x77 0xE1 0xF0 0x14 0xF0 0x77 - LeftCtrl (Pressed) - 0x14 - NumLock (Pressed) - 0x77 - LeftCtrl (Released) -...

It appears Zeal is interpreting Pause/Break as Ctrl-NumLock because of either the starting three bytes matching LeftCtrl-NumLock Pressed, or the latter four bytes matching LeftCtrl-NumLock Released. Though the specific bytes...

https://github.com/Zeal-Operating-System/ZealOS/blob/master/src/Kernel/SerialDev/Keyboard.ZC See: - ScanCode2Char - ScanCode2KeyName - KbdBuildSC - KbdPacketRead - KbdHandler

From the OSDev Wiki link above: > Note that scancodes with extended byte (E0) generates two different interrupts: the first containing the E0 byte, the second containing the scancode The...

> The uPNG lib is being reused in multiple apps now, would be nice to decide where to put it and make it globally available. The LICENSE of the uPNG...

error log has "modprobe: FATAL: Module nbd not found" , how do you have qemu-nbd installed

Did you make sure to follow the wiki and install all prerequisites https://github.com/Zeal-Operating-System/ZealOS/wiki/Building-an-ISO#instructions-linux

Please try the command listed here https://github.com/RPi-Distro/pi-gen/issues/499#issuecomment-980517599 (another issue on a different project with same error message as what you got) `sudo modprobe nbd` what output does that give, does...

(After you install nbd, you might need to reboot linux to have the new kernel module(s) be fully functional)

@coloredmarble https://zeal-operating-system.github.io/ZealOS-wiki/Installing-(QEMU)