mirror of
https://gitlab.com/bztsrc/bootboot.git
synced 2023-02-13 20:54:32 -05:00
Disabled FS/Z support by default
This commit is contained in:
parent
b383f59dec
commit
84415afd2f
3 changed files with 3 additions and 3 deletions
|
@ -44,7 +44,7 @@
|
|||
/* get BOOTBOOT structure */
|
||||
#include "../bootboot.h"
|
||||
// comment out this include if you don't want FS/Z support
|
||||
#include "../../osZ/include/osZ/fsZ.h"
|
||||
//#include "../../osZ/include/osZ/fsZ.h"
|
||||
|
||||
|
||||
/* aligned buffers */
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
;* @brief Filesystem drivers for initial ramdisk.
|
||||
;*
|
||||
|
||||
FSZ_SUPPORT equ 1
|
||||
FSZ_SUPPORT equ 0
|
||||
|
||||
;*********************************************************************
|
||||
;* File System Drivers *
|
||||
|
|
|
@ -49,7 +49,7 @@
|
|||
#include "../bootboot.h"
|
||||
#include "tinf.h"
|
||||
// comment out this include if you don't want FS/Z support
|
||||
#include "../../osZ/include/osZ/fsZ.h"
|
||||
//#include "../../osZ/include/osZ/fsZ.h"
|
||||
|
||||
/*** ELF64 defines and structs ***/
|
||||
#define ELFMAG "\177ELF"
|
||||
|
|
Loading…
Reference in a new issue