Change comment of virtImage init
This commit is contained in:
2023-11-16 14:48:28 +01:00
parent c9eedde905
commit 0da6b4a5ad

View File

@@ -256,7 +256,7 @@ void tftp_server_init(void) {
LOG_INFO(TAG, "Initializing tftp server");
// init the index.txt virt_file
init_index();
// init the virtImage.raw virt_file
// init the virtImage.raw virt_file with 80kb of ram
virt_file[2].data = malloc(81920 * sizeof(char));
virt_file[2].len = 81920;