Implement storage device partition rescan (XDRV_PARTITION_RESCAN), Self-hosted installation WIP
All checks were successful
Build ISO image / build-and-deploy (push) Successful in 35s
Build documentation / build-and-deploy (push) Successful in 27s

This commit is contained in:
2026-04-16 00:09:46 +02:00
parent 16cb7fd7bd
commit 288a4b4e83
27 changed files with 1565 additions and 147 deletions

8
libu/endianess.h Normal file
View File

@@ -0,0 +1,8 @@
#ifndef _KERNEL_LIBK_ENDIANESS_H
#define _KERNEL_LIBK_ENDIANESS_H
#define BSWAP16(x) __builtin_bswap16 ((x))
#define BSWAP32(x) __builtin_bswap32 ((x))
#define BSWAP64(x) __builtin_bswap64 ((x))
#endif // _KERNEL_LIBK_ENDIANESS_H

View File

@@ -33,6 +33,7 @@ struct edit_line {
};
void in_stream_read_line (const char* prompt, char* buffer, size_t max) {
memset (buffer, 0, max);
struct edit_line edit_line;
memset (&edit_line, 0, sizeof (edit_line));
const char* render = NULL;