summary refs log tree commit diff stats
path: root/results/classifier/deepseek-r1:14b/output/hypervisor/1767146
blob: fa13485fada63a3f4c20da733da34e29b76a8bab (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
No ACPI-table found, option -M 1.6 not found either

Currently writing a small kernel, when trying to detect memory blocks that contain ACPI information, no such block is found. When ran in Oracle Virtualbox, code runs flawlessly.

Code that is detecting the ACPI-Info (with a bit of debug-output):

```
multiboot_memory_map32_t* map = (multiboot_memory_map32_t*)mmap;
for (uint32_t i = 0; i < size; i++) {
	Termutils::cout << map[i].type << "type of block  ";
        if (mmap[i].type == MULTIBOOT_MEMORY_ACPI_RECLAIMABLE) {
		Termutils::cout << "WE ARE INSIDE\n";
		fadt = (FADT*)(map[i].base_addr_low);
		//break;
	}
	if (i % 9 == 0) {
		Termutils::cout << "\n";
	}
}
```


command qemu is run with:

qemu-img create build/objects/test 500M
qemu-system-i386 -hda $(APP_DIR)/clinl.iso -hdb ./build/objects/test


The iso-image is (zipped) included as attachment.


qemu-system-i386 --version:

QEMU emulator version 2.10.1(qemu-2.10.1-3.fc27)
Copyright (c) 2003-2017 Fabrice Bellard and the QEMU Project developers