|
Re: how often would one use "VAR_someoverride_append = ..."?
On Wed, 10 Mar 2021, Quentin Schulz wrote:
... snip ...
> https://git.yoctoproject.org/cgit/cgit.cgi/poky/tree/meta/recipes-kernel/linux/linux-yocto_5.10.bb#n12
> for example.
>
> This is an example
On Wed, 10 Mar 2021, Quentin Schulz wrote:
... snip ...
> https://git.yoctoproject.org/cgit/cgit.cgi/poky/tree/meta/recipes-kernel/linux/linux-yocto_5.10.bb#n12
> for example.
>
> This is an example
|
By
Robert P. J. Day
·
#52660
·
|
|
Re: How can I create a truly minimal distribution that runs entirely from RAM?
BBB example:
https://www.yoctoproject.org/pipermail/yocto/2018-July/041696.html
The line:
DISTRO_FEATURES_append = " ram"
Should be:
DISTRO_FEATURES_append = " nfs"
BSP Traces for BBB (YOCTO
BBB example:
https://www.yoctoproject.org/pipermail/yocto/2018-July/041696.html
The line:
DISTRO_FEATURES_append = " ram"
Should be:
DISTRO_FEATURES_append = " nfs"
BSP Traces for BBB (YOCTO
|
By
Zoran
·
#52659
·
|
|
[meta-security][PATCH] samhain: fix compile for powerpc
From: Kai Kang <kai.kang@...>
It fails to comile samhain for powerpc(qemuppc):
| x_sh_dbIO.c: In function 'swap_short':
| x_sh_dbIO.c:229:36: error: initializer element is not constant
|
From: Kai Kang <kai.kang@...>
It fails to comile samhain for powerpc(qemuppc):
| x_sh_dbIO.c: In function 'swap_short':
| x_sh_dbIO.c:229:36: error: initializer element is not constant
|
|
By
Kai Kang
·
#52658
·
|
|
Re: Assign IP address at boot time
On 3/10/21 1:32 PM, jchludzinski wrote:
Preferred method for local configuration is using /etc/systemd/network. However, the probable reason why it did not work is that the file
On 3/10/21 1:32 PM, jchludzinski wrote:
Preferred method for local configuration is using /etc/systemd/network. However, the probable reason why it did not work is that the file
|
By
Rudolf J Streif
·
#52657
·
|
|
How can I create a truly minimal distribution that runs entirely from RAM?
Hello everyone,
I am currently using this Yocto-based build setup provided by NXP to create a custom Linux distribution for one of the i.MX boards. My custom image is based on the core-image-minimal
Hello everyone,
I am currently using this Yocto-based build setup provided by NXP to create a custom Linux distribution for one of the i.MX boards. My custom image is based on the core-image-minimal
|
By
p32@...
·
#52656
·
|
|
Re: Assign IP address at boot time
That didn't work BUT editing /lib/systemd/network/80-wired.network
[Match]Name=en*
That didn't work BUT editing /lib/systemd/network/80-wired.network
[Match]Name=en*
|
By
jchludzinski
·
#52655
·
|
|
Integrating npm into install?
I've got a python app that uses some javascript assets that are normally built via webpack. In a normal build, the process is as follows:
* run "npm install" to get all the javascript dependencies
*
I've got a python app that uses some javascript assets that are normally built via webpack. In a normal build, the process is as follows:
* run "npm install" to get all the javascript dependencies
*
|
By
Paul Wicks
·
#52654
·
|
|
Re: Assign IP address at boot time
Create the file /etc/systemd/network/eth0.conf:
[Match]
Name=eth0
[Network]
Address=<ip>
Gateway=<ip>
DNS=<ip>
Restart systemd-networkd
# systemctl restart systemd-networkd
or reboot.
:rjs
--
Create the file /etc/systemd/network/eth0.conf:
[Match]
Name=eth0
[Network]
Address=<ip>
Gateway=<ip>
DNS=<ip>
Restart systemd-networkd
# systemctl restart systemd-networkd
or reboot.
:rjs
--
|
By
Rudolf J Streif
·
#52653
·
|
|
Re: Assign IP address at boot time
systemd
By
jchludzinski
·
#52652
·
|
|
[meta-security][PATCH] fscryptctl: Fix installation path
- Without the patch fscryptctl is installed in
/usr/bin/usr/local/bin instead of /usr/bin.
---
recipes-security/fscryptctl/fscryptctl_1.0.0.bb | 2 +-
1 file changed, 1 insertion(+), 1
- Without the patch fscryptctl is installed in
/usr/bin/usr/local/bin instead of /usr/bin.
---
recipes-security/fscryptctl/fscryptctl_1.0.0.bb | 2 +-
1 file changed, 1 insertion(+), 1
|
By
Łukasz Płachno
·
#52651
·
|
|
Demo of abi checker hook with hashequiv
Hi all,
I wanted to share with the mailing list a small proof of concept / demo I created that shows how the hashequiv checksum hook can be overridden with a custom hook to avoid rebuilds where
Hi all,
I wanted to share with the mailing list a small proof of concept / demo I created that shows how the hashequiv checksum hook can be overridden with a custom hook to avoid rebuilds where
|
By
Michael Ho <Michael.Ho@...>
·
#52650
·
|
|
Re: Assign IP address at boot time
What is your startup manager? systemd or SysVInit?
--
Rudolf J Streif
CEO/CTO ibeeto
+1.855.442.3386 x700
What is your startup manager? systemd or SysVInit?
--
Rudolf J Streif
CEO/CTO ibeeto
+1.855.442.3386 x700
|
By
Rudolf J Streif
·
#52649
·
|
|
Re: [meta-security][dunfell][PATCH 0/9] Some IMA/EVM fixes to dunfell branch
that are being built current. I can on build on branch at a time and it
takes time to do each. Things are looking good so I suspect they
changes will land in the next day or so.
-armin
that are being built current. I can on build on branch at a time and it
takes time to do each. Things are looking good so I suspect they
changes will land in the next day or so.
-armin
|
By
Armin Kuster
·
#52648
·
|
|
Re: how often would one use "VAR_someoverride_append = ..."?
Hi Robert,
https://git.yoctoproject.org/cgit/cgit.cgi/poky/tree/meta/recipes-kernel/linux/linux-yocto_5.10.bb#n12
for example.
This is an example of a "valid" use case (not that there are
Hi Robert,
https://git.yoctoproject.org/cgit/cgit.cgi/poky/tree/meta/recipes-kernel/linux/linux-yocto_5.10.bb#n12
for example.
This is an example of a "valid" use case (not that there are
|
By
Quentin Schulz
·
#52647
·
|
|
Re: how often would one use "VAR_someoverride_append = ..."?
can you point at an actual example of that? i took a look and all
the yocto kernel recipes i see use the first form. am i just looking
in the wrong place?
rday
can you point at an actual example of that? i took a look and all
the yocto kernel recipes i see use the first form. am i just looking
in the wrong place?
rday
|
By
Robert P. J. Day
·
#52646
·
|
|
Re: [meta-selinux][dunfell][gatesgarth][master][PATCH] libselinux-python: Fix build error due to missing target config
Hi,
On 3/10/2021 6:30 AM, Yi Zhao wrote:
either way, a backport to dunfell and gatesgarth would be great to have then.
Thanks!
Anatol
Hi,
On 3/10/2021 6:30 AM, Yi Zhao wrote:
either way, a backport to dunfell and gatesgarth would be great to have then.
Thanks!
Anatol
|
By
Anatol Belski
·
#52645
·
|
|
konrad has officially blessed his new meta-rubygems layer
inspired by my earlier plaintive mewling of "gosh, i wish YP had
better ruby support," konrad weihmann put in a ridiculous amount of
work and came up with:
inspired by my earlier plaintive mewling of "gosh, i wish YP had
better ruby support," konrad weihmann put in a ridiculous amount of
work and came up with:
|
By
Robert P. J. Day
·
#52644
·
|
|
Re: [meta-security][dunfell][PATCH 0/9] Some IMA/EVM fixes to dunfell branch
Hi, akuster808:
I saw this patch set has been merged to gatesgarth, may I ask, any plan for dunfell? I am asking because dunfell is a LTS branch and many users are building their products based on it.
Hi, akuster808:
I saw this patch set has been merged to gatesgarth, may I ask, any plan for dunfell? I am asking because dunfell is a LTS branch and many users are building their products based on it.
|
By
Ming Liu <liu.ming50@...>
·
#52643
·
|
|
Re: Assign IP address at boot time
Hello,
Maybe you can stop in the U-Boot monitor, and check your environment?
=>
=> print serverip
=> print ipaddr
=> print gatewayip
=> print gw_ip
And see what and how your bootcmd and similar env
Hello,
Maybe you can stop in the U-Boot monitor, and check your environment?
=>
=> print serverip
=> print ipaddr
=> print gatewayip
=> print gw_ip
And see what and how your bootcmd and similar env
|
By
Zoran
·
#52642
·
|
|
what version of YP will next wind river (LTS20) be based on?
i suspect i know the answer, just want to confirm ... friend tells
me yesterday he's working with LTS20, i said, "uh, that's not even out
yet," he assures he his company has an early release, but he
i suspect i know the answer, just want to confirm ... friend tells
me yesterday he's working with LTS20, i said, "uh, that's not even out
yet," he assures he his company has an early release, but he
|
By
Robert P. J. Day
·
#52641
·
|