Skip to content

Commit

Permalink
FEAT: adding the new opensea-common
Browse files Browse the repository at this point in the history
  • Loading branch information
Swiss3003 committed Aug 7, 2024
1 parent f9783d5 commit 133f95f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion opensea-common
Submodule opensea-common updated 69 files
+1 −0 .gitattributes
+1 −0 .gitignore
+0 −36 .travis.yml
+1 −1 Make/UEFI/copy_files.sh
+1 −1 Make/UEFI/opensea-common.dec
+1 −0 Make/UEFI/opensea-common.dsc
+1 −0 Make/UEFI/opensea-common.inf
+58 −58 Make/VS.2017/opensea-common/opensea-common/opensea-common.vcxproj
+113 −11 Make/VS.2017/opensea-common/opensea-common/opensea-common.vcxproj.filters
+51 −51 Make/VS.2019/opensea-common/opensea-common/opensea-common.vcxproj
+110 −11 Make/VS.2019/opensea-common/opensea-common/opensea-common.vcxproj.filters
+27 −6 Make/gcc/Makefile
+24 −6 Make/gccWin/Makefile.gccWin
+3 −1 Make/vmware/Makefile
+724 −0 include/bit_manip.h
+360 −0 include/code_attributes.h
+0 −1,917 include/common.h
+0 −48 include/common_nix.h
+0 −633 include/common_platform.h
+416 −0 include/common_types.h
+0 −34 include/common_uefi.h
+407 −0 include/env_detect.h
+69 −0 include/error_translation.h
+251 −0 include/io_utils.h
+211 −0 include/math_utils.h
+356 −0 include/memory_safety.h
+2 −1 include/opensea_common_version.h
+113 −0 include/pattern_utils.h
+125 −0 include/precision_timer.h
+270 −0 include/predef_env_detect.h
+118 −0 include/prng.h
+301 −0 include/secure_file.h
+41 −0 include/secured_env_vars.h
+56 −0 include/sleep.h
+350 −0 include/string_utils.h
+109 −0 include/time_utils.h
+132 −0 include/type_conversion.h
+155 −0 include/unit_conversion.h
+24 −40 include/windows_version_detect.h
+223 −50 meson.build
+1 −0 meson_options.txt
+404 −0 src/bit_manip.c
+0 −1,943 src/common.c
+0 −1,635 src/common_nix.c
+0 −243 src/common_platform.c
+0 −703 src/common_uefi.c
+0 −1,417 src/common_windows.c
+494 −0 src/env_detect.c
+267 −0 src/error_translation.c
+2,469 −0 src/io_utils.c
+145 −0 src/math_utils.c
+807 −0 src/memory_safety.c
+99 −0 src/pattern_utils.c
+876 −0 src/posix_env_detect.c
+520 −0 src/posix_secure_file.c
+161 −0 src/precision_timer.c
+106 −0 src/prng.c
+1,094 −0 src/secure_file.c
+225 −0 src/secured_env_vars.c
+78 −0 src/sleep.c
+887 −0 src/string_utils.c
+566 −0 src/time_utils.c
+439 −0 src/type_conversion.c
+86 −0 src/uefi_env_detect.c
+160 −0 src/unit_conversion.c
+744 −0 src/validate_format.c
+331 −0 src/windows_env_detect.c
+1,334 −0 src/windows_secure_file.c
+556 −0 src/windows_version_detect.c
2 changes: 1 addition & 1 deletion opensea-parser
Submodule opensea-parser updated 52 files
+13 −13 Make/VS.2019/opensea-parser/opensea-parser/opensea-parser.vcxproj
+2 −1 include/CAta_Device_Stat_Log.h
+2 −1 include/CAta_Ext_Comprehensive_Log.h
+2 −1 include/CAta_Ext_DST_Log.h
+3 −1 include/CAta_Identify_Log.h
+2 −1 include/CAta_NCQ_Command_Error_Log.h
+2 −1 include/CAta_Power_Conditions_Log.h
+2 −1 include/CAta_SMART_Log_Dir.h
+18 −4 include/CLog.h
+2 −1 include/CScsi_Application_Client_Log.h
+2 −1 include/CScsi_Background_Operation_Log.h
+5 −3 include/CScsi_Background_Scan_Log.h
+2 −1 include/CScsi_Cache_Statistics_Log.h
+1 −1 include/CScsi_Environmental_Logs.h
+2 −1 include/CScsi_Error_Counter_Log.h
+2 −1 include/CScsi_Factory_Log.h
+2 −1 include/CScsi_Format_Status_Log.h
+2 −1 include/CScsi_Informational_Exeptions_Log.h
+2 −1 include/CScsi_Logical_Block_Provisioning_Log.h
+2 −1 include/CScsi_Non_Medium_Error_Count_Log.h
+2 −1 include/CScsi_Page_19h_Cache_Memory_Statistics_Log.h
+2 −1 include/CScsi_Page_19h_Command_Duration_Limits_Log.h
+1 −1 include/CScsi_Pending_Defects_Log.h
+2 −1 include/CScsi_Power_Condition_Transitions_Log.h
+1 −1 include/CScsi_Protocol_Specific_Port_Log.h
+1 −1 include/CScsi_Self_Test_Results_Log.h
+1 −1 include/CScsi_Solid_State_Drive_Log.h
+2 −1 include/CScsi_Start_Stop_Cycle_Counter_Log.h
+1 −1 include/CScsi_Supported_LogPages_Log.h
+1 −1 include/CScsi_Temperature_Log.h
+1 −1 include/CScsi_Zoned_Device_Statistics_Log.h
+7 −5 include/Opensea_Parser_Helper.h
+1 −1 include/Seagate/CAta_Farm_Log.h
+1 −1 include/Seagate/CFARM_Log.h
+1 −1 include/Seagate/CScsi_Farm_Log.h
+1 −1 include/Seagate/Farm_Common.h
+2 −1 include/Seagate/Farm_Helper.h
+5 −1 include/Seagate/Farm_Types.h
+5 −3 include/Seagate/Scsi_Farm_Types.h
+99 −0 meson.build
+1 −0 src/CAta_Device_Stat_Log.cpp
+1 −1 src/CAta_Identify_Log.cpp
+1 −1 src/CAta_NCQ_Command_Error_Log.cpp
+6 −6 src/CAta_Power_Condition_Log.cpp
+65 −12 src/CLog.cpp
+13 −9 src/CScsi_Background_Scan_Log.cpp
+2 −2 src/CScsi_Log.cpp
+3 −3 src/CScsi_Protocol_Specific_Port_Log.cpp
+1 −1 src/CScsi_Self_Test_Results_Log.cpp
+47 −11 src/Seagate/CAta_Farm_Log.cpp
+54 −23 src/Seagate/CScsi_Farm_Log.cpp
+190 −88 src/Seagate/Farm_Common.cpp

0 comments on commit 133f95f

Please sign in to comment.