This commit is contained in:
2026-05-06 19:51:30 +07:00
commit 3958b0edcf
2704 changed files with 410390 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
#include "boot/entry.h"
#include "boot/typedef.h"
#include "drivers/eft/eft.h"
boot_entry_t entry_data[] = {
{
.name = "ESP32S3-Linux",
.type = "operating system",
.path = "/boot/boot.bin",
.entry_function = main_entry
},
{
.name = "ESP32S3-Recovery",
.type = "recovery OS",
.path = "/boot/recovery.bin",
.entry_function = recovery_entry
},
{
.name = "EFT Server",
.type = "server shell",
.path = "/drivers/eft/eft_server.bin",
.entry_function = eft_server_shell
}
};
const int autostart_index = 0;
const int entry_table_count = 3;