Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support macOS High Sierra #57

Closed
wants to merge 10 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: RealtekCardReader-CI
name: Update Artifacts

# Controls when the workflow will run
on:
Expand All @@ -18,9 +18,9 @@ jobs:
runs-on: macos-latest
steps:
# Checkout the card reader repo
- uses: actions/checkout@v2
- uses: actions/checkout@v4.2.2
# Checkout the MacKernelSDK repo
- uses: actions/checkout@v2
- uses: actions/checkout@v4.2.2
with:
repository: acidanthera/MacKernelSDK
path: MacKernelSDK
Expand All @@ -29,9 +29,9 @@ jobs:
- run: xcodebuild -jobs 3 -configuration Release
# Upload the driver
- name: Upload to Artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4.4.3
with:
name: Artifacts
name: RealtekCardReader
path: build/*/*.zip

# Analyze the kext
Expand All @@ -40,9 +40,9 @@ jobs:
runs-on: macos-latest
steps:
# Checkout the card reader repo
- uses: actions/checkout@v2
- uses: actions/checkout@v4.2.2
# Checkout the MacKernelSDK repo
- uses: actions/checkout@v2
- uses: actions/checkout@v4.2.2
with:
repository: acidanthera/MacKernelSDK
path: MacKernelSDK
Expand Down
2 changes: 2 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# Changelog
#### v0.9.8 Beta
- Added support for Ventura, Sonoma, Sequoia.

#### v0.9.7 Beta
- ~~Fixed an issue that the card is not mounted after the computer wakes up when sleeps with the card inserted.~~
Expand Down
11 changes: 8 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,19 +22,24 @@ It uses the Linux driver as a reference implementation but is written from scrat
- SD Express cards are not supported

## Current Status
- **Last Updated:** Oct 25, 2022
- **Last Updated:** Dec 3, 2024
- **Reference:** [Linux Kernel 5.11](https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.11.tar.xz)
- **Driver Status:** Pre-1.0 Beta (v0.9.7)
- **Driver Status:** Pre-1.0 Beta (v0.9.8)
- USB-based RTS5129, 5139 and 5179 card readers are now supported and should be working properly.
- I/O performance and the overall driver stability are of the most concern at this moment.
- **Known Issues:** [Link](Docs/KnownIssues.md)

## Supported Systems

- macOS Sequoia
- macOS Sonoma
- macOS Ventura
- macOS Monterey
- macOS Big Sur
- macOS Catalina
- macOS Mojave

- macOS High Sierra
-
#### Notes:
- Other systems are not tested yet.

Expand Down
12 changes: 6 additions & 6 deletions RealtekCardReader.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -777,7 +777,7 @@
GCC_WARN_UNUSED_VARIABLE = YES;
KERNEL_EXTENSION_HEADER_SEARCH_PATHS = "$(PROJECT_DIR)/MacKernelSDK/Headers";
KERNEL_FRAMEWORK_HEADERS = "$(PROJECT_DIR)/MacKernelSDK/Headers";
MACOSX_DEPLOYMENT_TARGET = 10.14;
MACOSX_DEPLOYMENT_TARGET = 10.13;
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
MTL_FAST_MATH = YES;
ONLY_ACTIVE_ARCH = YES;
Expand Down Expand Up @@ -833,7 +833,7 @@
GCC_WARN_UNUSED_VARIABLE = YES;
KERNEL_EXTENSION_HEADER_SEARCH_PATHS = "$(PROJECT_DIR)/MacKernelSDK/Headers";
KERNEL_FRAMEWORK_HEADERS = "$(PROJECT_DIR)/MacKernelSDK/Headers";
MACOSX_DEPLOYMENT_TARGET = 10.14;
MACOSX_DEPLOYMENT_TARGET = 10.13;
MTL_ENABLE_DEBUG_INFO = NO;
MTL_FAST_MATH = YES;
SDKROOT = macosx;
Expand All @@ -852,10 +852,10 @@
HEADER_SEARCH_PATHS = "";
INFOPLIST_FILE = RealtekCardReader/Info.plist;
LIBRARY_SEARCH_PATHS = "$(PROJECT_DIR)/MacKernelSDK/Library/x86_64";
MACOSX_DEPLOYMENT_TARGET = 10.14;
MACOSX_DEPLOYMENT_TARGET = 10.13;
MARKETING_VERSION = "$(MODULE_VERSION)";
MODULE_NAME = science.firewolf.rtsx;
MODULE_VERSION = 0.9.7;
MODULE_VERSION = 0.9.8;
PRODUCT_BUNDLE_IDENTIFIER = science.firewolf.rtsx;
PRODUCT_NAME = "$(TARGET_NAME)";
RUN_CLANG_STATIC_ANALYZER = YES;
Expand All @@ -875,10 +875,10 @@
HEADER_SEARCH_PATHS = "";
INFOPLIST_FILE = RealtekCardReader/Info.plist;
LIBRARY_SEARCH_PATHS = "$(PROJECT_DIR)/MacKernelSDK/Library/x86_64";
MACOSX_DEPLOYMENT_TARGET = 10.14;
MACOSX_DEPLOYMENT_TARGET = 10.13;
MARKETING_VERSION = "$(MODULE_VERSION)";
MODULE_NAME = science.firewolf.rtsx;
MODULE_VERSION = 0.9.7;
MODULE_VERSION = 0.9.8;
PRODUCT_BUNDLE_IDENTIFIER = science.firewolf.rtsx;
PRODUCT_NAME = "$(TARGET_NAME)";
RUN_CLANG_STATIC_ANALYZER = YES;
Expand Down