-
Notifications
You must be signed in to change notification settings - Fork 2k
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
pkg/umorse: Add kconfig option #15980
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You should include the pkg_umorse
test application to the ones that murdock tests with Kconfig
Lines 27 to 28 in d7f3e92
: ${TEST_KCONFIG_native:="examples/hello-world tests/periph_* tests/sys_crypto | |
tests/prng_* tests/xtimer_* tests/ztimer_* tests/driver_ws281x"} |
With the corresponding app.config.test
.
pkg/umorse/Kconfig
Outdated
# | ||
config USEPKG_UMORSE | ||
bool "umorse" | ||
select USEMODULE_POSIX_SLEEP |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
select USEMODULE_POSIX_SLEEP | |
select MODULE_POSIX_SLEEP |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should check if it is safe to keep the select
or this should be depends on
. The posix modules are not modelled AFAIK, so those should be added.
pkg/umorse/Kconfig
Outdated
# General Public License v2.1. See the file LICENSE in the top level | ||
# directory for more details. | ||
# | ||
config USEPKG_UMORSE |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
config USEPKG_UMORSE | |
config PACKAGE_UMORSE |
pkg/umorse/Kconfig
Outdated
config USEPKG_UMORSE | ||
bool "umorse" | ||
select USEMODULE_POSIX_SLEEP | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Check this new blank line error please.
Add the umorse pkg to the pkg rsource and expose dependancies.
e46523d
to
114c6c4
Compare
Done and squashed! |
Don't know why I have 2 of these #15985 |
I was confused when I saw this in my MUA and only then I understood. |
Contribution description
Add the umorse pkg to the pkg rsource and expose dependencies.
Testing procedure
TEST_KCONFIG=1 make menuconfig -C tests/pkg_umorse/
Issues/PRs references
Split from #15950