mirror of
https://github.com/azure-rtos/filex.git
synced 2025-01-18 01:22:52 +08:00
Release 6.1.8
This commit is contained in:
parent
3f4d2b5e35
commit
31e03f083a
@ -2,7 +2,6 @@ cmake_minimum_required(VERSION 3.0.0 FATAL_ERROR)
|
||||
|
||||
# Set up the project
|
||||
project(filex
|
||||
VERSION 6.0.0
|
||||
LANGUAGES C ASM
|
||||
)
|
||||
|
||||
@ -31,7 +30,11 @@ endif()
|
||||
set(CUSTOM_INC_DIR ${CMAKE_CURRENT_BINARY_DIR}/custom_inc)
|
||||
|
||||
# Pick up the port specific stuff first
|
||||
add_subdirectory(${CMAKE_CURRENT_LIST_DIR}/ports/${THREADX_ARCH}/${THREADX_TOOLCHAIN})
|
||||
if(DEFINED FILEX_CUSTOM_PORT)
|
||||
add_subdirectory(${FILEX_CUSTOM_PORT} filex_port)
|
||||
else()
|
||||
add_subdirectory(${CMAKE_CURRENT_LIST_DIR}/ports/${THREADX_ARCH}/${THREADX_TOOLCHAIN})
|
||||
endif()
|
||||
|
||||
# Then the common files
|
||||
add_subdirectory(${CMAKE_CURRENT_LIST_DIR}/common)
|
||||
|
@ -26,7 +26,7 @@
|
||||
/* APPLICATION INTERFACE DEFINITION RELEASE */
|
||||
/* */
|
||||
/* fx_api.h PORTABLE C */
|
||||
/* 6.1.7 */
|
||||
/* 6.1.8 */
|
||||
/* AUTHOR */
|
||||
/* */
|
||||
/* William E. Lamie, Microsoft Corporation */
|
||||
@ -63,6 +63,9 @@
|
||||
/* 06-02-2021 William E. Lamie Modified comment(s), and */
|
||||
/* updated product constants, */
|
||||
/* resulting in version 6.1.7 */
|
||||
/* 08-02-2021 William E. Lamie Modified comment(s), and */
|
||||
/* updated product constants, */
|
||||
/* resulting in version 6.1.8 */
|
||||
/* */
|
||||
/**************************************************************************/
|
||||
|
||||
@ -112,7 +115,7 @@ extern "C" {
|
||||
#define AZURE_RTOS_FILEX
|
||||
#define FILEX_MAJOR_VERSION 6
|
||||
#define FILEX_MINOR_VERSION 1
|
||||
#define FILEX_PATCH_VERSION 7
|
||||
#define FILEX_PATCH_VERSION 8
|
||||
|
||||
/* Define the following symbols for backward compatibility */
|
||||
#define EL_PRODUCT_FILEX
|
||||
|
@ -58,7 +58,7 @@ ULONG _fx_media_format_volume_id = 1;
|
||||
/* FUNCTION RELEASE */
|
||||
/* */
|
||||
/* _fx_media_format PORTABLE C */
|
||||
/* 6.1.5 */
|
||||
/* 6.1.8 */
|
||||
/* AUTHOR */
|
||||
/* */
|
||||
/* William E. Lamie, Microsoft Corporation */
|
||||
@ -117,6 +117,9 @@ ULONG _fx_media_format_volume_id = 1;
|
||||
/* resulting in version 6.1 */
|
||||
/* 03-02-2021 William E. Lamie Modified comment(s), */
|
||||
/* resulting in version 6.1.5 */
|
||||
/* 08-02-2021 Bhupendra Naphade Modified comment(s), and */
|
||||
/* updated boot write logic, */
|
||||
/* resulting in version 6.1.8 */
|
||||
/* */
|
||||
/**************************************************************************/
|
||||
UINT _fx_media_format(FX_MEDIA *media_ptr, VOID (*driver)(FX_MEDIA *media), VOID *driver_info_ptr, UCHAR *memory_ptr, UINT memory_size,
|
||||
@ -453,6 +456,7 @@ UINT sectors_per_fat, f, s;
|
||||
/* Select the boot record write command. */
|
||||
media_ptr -> fx_media_driver_request = FX_DRIVER_BOOT_WRITE;
|
||||
media_ptr -> fx_media_driver_system_write = FX_TRUE;
|
||||
media_ptr -> fx_media_driver_sectors = 1;
|
||||
media_ptr -> fx_media_driver_sector_type = FX_BOOT_SECTOR;
|
||||
|
||||
/* If trace is enabled, insert this event into the trace buffer. */
|
||||
|
Loading…
x
Reference in New Issue
Block a user