-
Notifications
You must be signed in to change notification settings - Fork 20
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
Onboard: Add onboard virtual keyboard #67
base: nilrt/master/next
Are you sure you want to change the base?
Conversation
Have y'all discussed upstreaming this? If we cannot convince meta-OE upstream to revive the recipe, then we should instead move everything into meta-nilrt. |
8f535d6
to
99f7328
Compare
99f7328
to
c1c18cd
Compare
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.
Changes look fine.
But since we'd like to submit this upstream first, mentioning scarthgap
in commit message is not ideal as we'd be submitting to master
branch. So something like Onboard: Add onboard virtual keyboard
would be better.
Once this ends up in upstream, we can do upstream merge to get the change into our repo.
Before sending upstream, please test it in poky and make sure the recipe is usable on its own i.e., it builds, produces valid package which is installable and usable without any NI specific changes from the meta-nilrt layer.
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.
c1c18cd
to
cff4868
Compare
|
||
Signed-off by: Pratheeksha S N <pratheeksha.s.n@ni.com> | ||
|
||
Upstream-Status: Not Submitted [This is being added to the meta-nilrt layer for now. If it is accepted upstream, it will be removed from here.] |
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.
This is not accurate, please fix.
Refer https://docs.yoctoproject.org/contributor-guide/recipe-style-guide.html#patch-upstream-status - I think it can be classified as "Inactive-Upstream", and the reason to [lastcommit: when (and/or) lastrelease: when]
.
I know we mention Not Submitted
as one of the reasons in https://github.com/ni/meta-nilrt/blob/nilrt/master/next/docs/styleguide.md#L133 but haven't found mention of it upstream.
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.
I have fixed this now.
cff4868
to
cf8899e
Compare
Signed-off by: Pratheeksha S N <pratheeksha.s.n@ni.com>
cf8899e
to
cdcc4c0
Compare
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.
Looks good. Can be sent upstream now.
Summary of Changes
The PR adds the virtual keyboard "Onboard" to meta-openembedded.
Justification
#AB2491688 requires the keyboard to be present on scarthgap as well.
The virtual keyboard "Onboard" (present on kirkstone) had been removed from scarthgap due to build errors on python 3.12. This PR adds back the same with corrections required for python3.12.
Implementation
Changes that differ from kirkstone:
inherit
ssetuptools3
instead ofdistutils3
. This change is required since distutils3 has been deprecated in python3.12 and the compile step fails. Since the compile fails, there are no packages that get installed.setuptools3
installs files to the site-packages folder no matter what absolute path is specified as the prefix for the installation path.onboard_hover_seg_fault.patch
. This patch was found online here.Currently, when the mouse pointer hovers on a key, the app crashes with a segmentation fault, and this is what the patch fixes.
Other required changes can be seen in this PR in the meta-nilrt layer.
The keyboard can now be launched and used just like in kirkstone.
Testing
bitbake packagefeed-ni-core
)Tested by installing the built IPK on a VM.
Signed-off by: Pratheeksha S N pratheeksha.s.n@ni.com