Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/themactep/ingenic-sdk
Opensource Ingenic SoCs SDK
https://github.com/themactep/ingenic-sdk
Last synced: about 2 months ago
JSON representation
Opensource Ingenic SoCs SDK
- Host: GitHub
- URL: https://github.com/themactep/ingenic-sdk
- Owner: themactep
- License: mit
- Created: 2023-09-07T01:29:47.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-08-27T12:13:48.000Z (4 months ago)
- Last Synced: 2024-08-27T13:35:39.011Z (4 months ago)
- Language: C
- Homepage: https://thingino.com
- Size: 25.4 MB
- Stars: 7
- Watchers: 2
- Forks: 9
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Open Source Ingenic kernel modules
### Building Ingenic Kernel Modules
#### How to Build
To compile the kernel modules for Ingenic SoCs, run the following command from your terminal:
```console
./build.sh
./build.sh clean
```Example for building the kernel module for the GC2053 sensor on a T31 SoC with kernel version 3.10:
```console
SENSOR=gc2053 ./build.sh t31 3.10
```### Parameters:
- ``: Specify the Ingenic SoC model you are using, such as `t31`, `t40`, etc.
- ``: Indicate the kernel version. Supported versions include `3.10` and `4.4`.
- ``: Additional make arguments as required.Ensure you provide the correct `SOC` environment variable corresponding to your sensor and SoC setup before executing the build command.