[FREELDR] Rename the ext2.* to ext.*

This commit is contained in:
Daniel Victor 2025-01-19 14:14:58 -03:00 committed by Timo Kreuzer
parent 601646e3b0
commit d0dfb6cf6f
4 changed files with 2 additions and 2 deletions

View file

@ -44,7 +44,7 @@ list(APPEND FREELDR_BOOTLIB_SOURCE
lib/comm/rs232.c
## add KD support
lib/fs/btrfs.c
lib/fs/ext2.c
lib/fs/ext.c
lib/fs/fat.c
lib/fs/fs.c
lib/fs/iso.c

View file

@ -86,7 +86,7 @@
#include <peloader.h>
/* File system headers */
#include <fs/ext2.h>
#include <fs/ext.h>
#include <fs/fat.h>
#include <fs/ntfs.h>
#include <fs/iso.h>