|
Re: building additional kenrel module in yocto, ERROR: no makefile found
I suspect this script is to be run on the host, so maybe openssl-native in DEPENDS?
Let us know,
Quentin
I suspect this script is to be run on the host, so maybe openssl-native in DEPENDS?
Let us know,
Quentin
|
By
Quentin Schulz
·
#54483
·
|
|
Re: building additional kenrel module in yocto, ERROR: no makefile found
Thanks!
Can I ask one more question? My module is need for openssl, I added
DEPENDS = "openssl" in my recipe
$ cat meta-gobinet/recipes-gobinet/gobinet/gobinet_1.bb
SUMMARY = "gobinet module"
LICENSE
Thanks!
Can I ask one more question? My module is need for openssl, I added
DEPENDS = "openssl" in my recipe
$ cat meta-gobinet/recipes-gobinet/gobinet/gobinet_1.bb
SUMMARY = "gobinet module"
LICENSE
|
By
Ivan Riabtsov <ivriabtsov@...>
·
#54482
·
|
|
Re: building additional kenrel module in yocto, ERROR: no makefile found
Hi Ivan,
Because do_compile runs from ${S} which by default is set to ${WORKDIR}/${PN}-${PV} (might be BPN instead of PN but does not matter). Basically it expects to be run from
Hi Ivan,
Because do_compile runs from ${S} which by default is set to ${WORKDIR}/${PN}-${PV} (might be BPN instead of PN but does not matter). Basically it expects to be run from
|
By
Quentin Schulz
·
#54481
·
|
|
Re: best way to get feature of systemd v248 in yocto-hardknott (systemd v247)?
Thanks Nicolas.
I was able to get what I needed by backporting the relevant changes (DHCP client LinkLocal address fallback) into the systemd v247 source. It was a little ugly, but is working now.
I
Thanks Nicolas.
I was able to get what I needed by backporting the relevant changes (DHCP client LinkLocal address fallback) into the systemd v247 source. It was a little ugly, but is working now.
I
|
By
Bill Plunkett
·
#54480
·
|
|
building additional kenrel module in yocto, ERROR: no makefile found
help please, I meet with a problem with assembling the kernel module,
created a new layer:
$ ll ~/work/yocto/sources/meta-gobinet
total 28K
drwxr-xr-x 5 ivr ivr 4.0K Aug 18 11:27 .
drwxr-xr-x 12 ivr
help please, I meet with a problem with assembling the kernel module,
created a new layer:
$ ll ~/work/yocto/sources/meta-gobinet
total 28K
drwxr-xr-x 5 ivr ivr 4.0K Aug 18 11:27 .
drwxr-xr-x 12 ivr
|
By
Ivan Riabtsov <ivriabtsov@...>
·
#54479
·
|
|
Re: hardknott: systemd / agetty: root user environment (sbin not in PATH) when setting password with EXTRA_USERS_PARAMS (solved)
Hello,
I found it out myself: in the /etc/profile file, the PATH for root is only adjusted if the home directory is /home/root.
That was the cause.
It had nothing to do with setting the password
Hello,
I found it out myself: in the /etc/profile file, the PATH for root is only adjusted if the home directory is /home/root.
That was the cause.
It had nothing to do with setting the password
|
By
Matthias Klein
·
#54478
·
|
|
Raspberrypi
#raspberrypi
Hello everyone,
Why I can't execute an executable python script in the raspberry? what should I add to the yocto image?
Hello everyone,
Why I can't execute an executable python script in the raspberry? what should I add to the yocto image?
|
By
yasminebenghozzi6@...
·
#54477
·
|
|
hardknott: systemd / agetty: root user environment (sbin not in PATH) when setting password with EXTRA_USERS_PARAMS
Hello,
I tried to assign a password to the root user and added the following to my image file:
inherit extrausers
EXTRA_USERS_PARAMS = "usermod -d / -P root root;"
At the same time in the
Hello,
I tried to assign a password to the root user and added the following to my image file:
inherit extrausers
EXTRA_USERS_PARAMS = "usermod -d / -P root root;"
At the same time in the
|
By
Matthias Klein
·
#54476
·
|
|
Re: raspberrypi GPIO
#raspberrypi
There is a recipe for RPi.GPIO available in meta-raspberrypi [1]. I
doubt that it's installed in any of the default images. You should add
it to your image by appending to the IMAGE_INSTALL variable.
There is a recipe for RPi.GPIO available in meta-raspberrypi [1]. I
doubt that it's installed in any of the default images. You should add
it to your image by appending to the IMAGE_INSTALL variable.
|
By
Nicolas Jeker
·
#54475
·
|
|
raspberrypi GPIO
#raspberrypi
Hello,
I have a problem importing python RPi.GPIO in yocto, not found, while they should be there only by cloning the meta-raspberry right?
Any answer please on how to get them?
thank you
Hello,
I have a problem importing python RPi.GPIO in yocto, not found, while they should be there only by cloning the meta-raspberry right?
Any answer please on how to get them?
thank you
|
By
yasminebenghozzi6@...
·
#54474
·
|
|
Re: Weird bitbake generation behavior
Google shows:
https://patchwork.openembedded.org/patch/176924/
so I'd check the glog
Google shows:
https://patchwork.openembedded.org/patch/176924/
so I'd check the glog
|
By
Richard Purdie
·
#54473
·
|
|
Build multiple drivers wit one recipe
#kernel
#linux
I am developing a pair of driver modules that share some functionality. Thus it would be convenient for the source files of the drivers to share a directory with the source files of the shared
I am developing a pair of driver modules that share some functionality. Thus it would be convenient for the source files of the drivers to share a directory with the source files of the shared
|
By
davidgnisbet@...
·
#54472
·
|
|
[meta-security][PATCH 2/2] image-with-hardened-binaries: Add selftest
Add selftest that executes binary analysis on small rootfs
Signed-off-by: Maximilian Blenk <Maximilian.Blenk@...>
---
.../cases/hardened_binaries_checker.py | 42 +++++++++++++++++++
1
Add selftest that executes binary analysis on small rootfs
Signed-off-by: Maximilian Blenk <Maximilian.Blenk@...>
---
.../cases/hardened_binaries_checker.py | 42 +++++++++++++++++++
1
|
By
Maximilian Blenk <Maximilian.Blenk@...>
·
#54471
·
|
|
[meta-security][PATCH 1/2] image-with-hardened-binaries: add class
Add class to analyze binaries with checksec.py. checksec.py is a tool
that checks if security features of a compiler have been used. To do
so, it analyses the resulting binaries:
* NX Proctection is
Add class to analyze binaries with checksec.py. checksec.py is a tool
that checks if security features of a compiler have been used. To do
so, it analyses the resulting binaries:
* NX Proctection is
|
By
Maximilian Blenk <Maximilian.Blenk@...>
·
#54470
·
|
|
[PATCH 2/2] image-with-hardened-binaries: Add selftest
Hi guys,
we are currenlty working on adding automatically checking the binaries we put into an image for the presence of certain recommended compiler features. To achieve this, we created a bbclass
Hi guys,
we are currenlty working on adding automatically checking the binaries we put into an image for the presence of certain recommended compiler features. To achieve this, we created a bbclass
|
By
Maximilian Blenk <Maximilian.Blenk@...>
·
#54469
·
|
|
[PATCH 1/2] image-with-hardened-binaries: add class
Add class to analyze binaries with checksec.py. checksec.py is a tool
that checks if security features of a compiler have been used. To do
so, it analyses the resulting binaries:
* NX Proctection is
Add class to analyze binaries with checksec.py. checksec.py is a tool
that checks if security features of a compiler have been used. To do
so, it analyses the resulting binaries:
* NX Proctection is
|
By
Maximilian Blenk <Maximilian.Blenk@...>
·
#54468
·
|
|
[PATCH 2/2] image-with-hardened-binaries: Add selftest
Add selftest that executes binary analysis on small rootfs
Signed-off-by: Maximilian Blenk <Maximilian.Blenk@...>
---
.../cases/hardened_binaries_checker.py | 42 +++++++++++++++++++
1
Add selftest that executes binary analysis on small rootfs
Signed-off-by: Maximilian Blenk <Maximilian.Blenk@...>
---
.../cases/hardened_binaries_checker.py | 42 +++++++++++++++++++
1
|
By
Maximilian Blenk <Maximilian.Blenk@...>
·
#54467
·
|
|
Weird bitbake generation behavior
Hi,
I share an sstate-cache with my fellow developers and I was assessing why sometimes things got rebuild even though I did not expect this.
One of the things I discovered was that we had two
Hi,
I share an sstate-cache with my fellow developers and I was assessing why sometimes things got rebuild even though I did not expect this.
One of the things I discovered was that we had two
|
By
Frans Meulenbroeks <fransmeulenbroeks@...>
·
#54466
·
|
|
creating tarball for storing downloads; issue inheriting own-mirrors.bbclass
Hello,
I am trying to create tarballs to store yocto downloads. This is primarily to avoid old commits breaking when some random git repository changes their master branch name or something like
Hello,
I am trying to create tarballs to store yocto downloads. This is primarily to avoid old commits breaking when some random git repository changes their master branch name or something like
|
By
scott.threet@...
·
#54465
·
|
|
Re: multilib32: libtool-cross_2.4.6.bb configure failure
Hi,
Any help on this topic would be much appreciated.
Thanks,
Nir.
Hi,
Any help on this topic would be much appreciated.
Thanks,
Nir.
|
By
Geller, Nir <nir.geller@...>
·
#54464
·
|