Results 130 comments of A1ive

http://bbs.wuyou.net/forum.php?mod=redirect&goto=findpost&ptid=417545&pid=4099900 Someone reported that after this commit (https://github.com/a1ive/grub/commit/de2bb17cd61c31f5a459b6242a8511bfd599d0b9), `terminal_output gfxterm` leads to black screen.

-f "(hd0,2)/*.cfg" and -f (hd0,2)/*.cfg (no quotes) are not the same. path with quotes will not use wildcard.

> read_byte, read_word, read_dword, write_bytes These commands are used to read /write memory. > I want to get dword values from the MBR of a disk (hd0)0+1. then use expr...

I don't think we could handle dword in grub2 scripts (or other scripting languages).

> @maharmstone > Hi, I get an error when I try to boot with VMware Workstation 15 Pro. > ![image](https://user-images.githubusercontent.com/61312109/81494341-c2fb5b00-92da-11ea-8046-d3558662ab10.png) > I remember that VMware seems to support CSM, do...

Please execute the following command: `displaymem -a`

> **Grub4dos-for_UEFI-2020-12-15 + ntfs_x64.efi (from Rufus) Test Report** > > Mini-10x64-2004.vhd >>> Single partition NTFS Active booted very fine >>> 2004 - release.191206-1406 > > **The VHD fail to boot:**...

FAT32 BPB: struct grub_fat_bpb { grub_uint8_t jmp_boot[3]; grub_uint8_t oem_name[8]; grub_uint16_t bytes_per_sector; grub_uint8_t sectors_per_cluster; grub_uint16_t num_reserved_sectors; grub_uint8_t num_fats; grub_uint16_t num_root_entries; grub_uint16_t num_total_sectors_16; grub_uint8_t media; grub_uint16_t sectors_per_fat_16; grub_uint16_t sectors_per_track; grub_uint16_t num_heads; **grub_uint32_t...

https://github.com/a1ive/grub/blob/0debea8e30bfc4e496fc6aab8dc9ed359f745daa/grub-core/lib/fatfs/ff.c#L6094 ``` /* Create two set of the exFAT VBR blocks */ sect = b_vol; for (n = 0; n < 2; n++) { /* Main record (+0) */ mem_set(buf,...