Add support for zephyr RTOS#53
Open
alexandre-perrin wants to merge 1 commit into
Open
Conversation
Zephyr does not provide compression libraries such as gzip or zlib. Uzlib is a good candidate as a small footprint library. This adds support to integrate and build uzlib as zephyr module. Changes: * Use <> type include instead of quote includes for uzlib_conf.h to be able to override conf for zephyr. * Added zephyr directory for module build variant * Ported uzlib configuration to Kconfig Features: * Module can be configured to build for compression or/and decompression * Uzlib configuration through Kconfig
Owner
|
Thanks for the patch. Unfortunately, I currently don't have enough resources to maintain this project actively. I also by default would be skeptical about such patches - uzlib is intended to be a generic lib which can be integrated into any environment (and in easy enough manner). If a particular (RT)OS needs some adhoc files for such integration, that would belong to an (RT)OS (perhaps its "package repository"), not a generic project. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Zephyr does not provide compression libraries such as gzip or zlib. Uzlib is a good candidate as a small footprint library. This adds support to integrate and build uzlib as zephyr module.
Changes:
Features: