summary refs log tree commit diff stats
path: root/results/classifier/gemma3:12b/files/304636
diff options
context:
space:
mode:
authorChristian Krinitsin <mail@krinitsin.com>2025-07-03 07:27:52 +0000
committerChristian Krinitsin <mail@krinitsin.com>2025-07-03 07:27:52 +0000
commitd0c85e36e4de67af628d54e9ab577cc3fad7796a (patch)
treef8f784b0f04343b90516a338d6df81df3a85dfa2 /results/classifier/gemma3:12b/files/304636
parent7f4364274750eb8cb39a3e7493132fca1c01232e (diff)
downloadqemu-analysis-d0c85e36e4de67af628d54e9ab577cc3fad7796a.tar.gz
qemu-analysis-d0c85e36e4de67af628d54e9ab577cc3fad7796a.zip
add deepseek and gemma results
Diffstat (limited to 'results/classifier/gemma3:12b/files/304636')
-rw-r--r--results/classifier/gemma3:12b/files/30463638
1 files changed, 38 insertions, 0 deletions
diff --git a/results/classifier/gemma3:12b/files/304636 b/results/classifier/gemma3:12b/files/304636
new file mode 100644
index 000000000..2c6674874
--- /dev/null
+++ b/results/classifier/gemma3:12b/files/304636
@@ -0,0 +1,38 @@
+
+-hda FAT:. limited to 504MBytes
+
+Binary package hint: qemu
+
+The size of the virtual FAT file system (for sharing a particular directory with Guest OS) is hard-coded to be limited to 504MBytes, in block-vvfat.c
+--
+/* 504MB disk*/
+bs->cyls=1024; bs->heads=16; bs->secs=63;
+--
+
+If the directory contents exceeds this is stops with an assert
+--
+qemu: block-vvfat.c:97: array_get: Assertion `index < array->next' failed.
+Aborted
+--
+
+Also the FAT16 mode (default) only uses 8KByte cluster sizes which prevents the above being increased. 16KByte and 32KByte sectors can be selected with the following patch
+--
+--- block-vvfat.c_orig  2008-12-02 12:37:28.000000000 -0700
++++ block-vvfat.c       2008-12-02 19:50:35.000000000 -0700
+@@ -1042,6 +1042,12 @@
+        s->fat_type = 32;
+     } else if (strstr(dirname, ":16:")) {
+        s->fat_type = 16;
++    } else if (strstr(dirname, ":16-16K:")) {
++       s->fat_type = 16;
++       s->sectors_per_cluster=0x20;
++    } else if (strstr(dirname, ":16-32K:")) {
++       s->fat_type = 16;
++       s->sectors_per_cluster=0x40;
+     } else if (strstr(dirname, ":12:")) {
+        s->fat_type = 12;
+        s->sector_count=2880;
+--
+
+Cheers,
+Mungewell
\ No newline at end of file