|
Force binary package install
I have been handed a binary package that I am integrating into a Yocto build. When dnf runs it complains about missing dependencies. These are standard libraries of course but the culprit is the incom
I have been handed a binary package that I am integrating into a Yocto build. When dnf runs it complains about missing dependencies. These are standard libraries of course but the culprit is the incom
|
By
Rudolf J Streif
· #57296
·
|
|
Query regarding yocto build
Hello, Topposting since the problem is in the screenshot. The issue is the naming of the shared object. Linux convention is that a shared object contains the version number e.g. log_wrapper.so.1 and l
Hello, Topposting since the problem is in the screenshot. The issue is the naming of the shared object. Linux convention is that a shared object contains the version number e.g. log_wrapper.so.1 and l
|
By
Rudolf J Streif
· #56446
·
|
|
Custom Image Type
Thanks, Khem. The image class defines IMAGE_CMD. There is not much to it for now: OTA_ROOTFS_MD5 ?= "rootfs.md5" IMAGE_CMD:ota () { build_ota="${WORKDIR}/build-ota" # rootfs md5sum ${IMAGE_ROOTFS} > $
Thanks, Khem. The image class defines IMAGE_CMD. There is not much to it for now: OTA_ROOTFS_MD5 ?= "rootfs.md5" IMAGE_CMD:ota () { build_ota="${WORKDIR}/build-ota" # rootfs md5sum ${IMAGE_ROOTFS} > $
|
By
Rudolf J Streif
· #56330
·
|
|
Custom Image Type
I ran into a problem with a custom image type class. I called the class image_types_ota.bbclass. When I try to use it I am getting these error messages for two predefined image recipes (but only for t
I ran into a problem with a custom image type class. I called the class image_types_ota.bbclass. When I try to use it I am getting these error messages for two predefined image recipes (but only for t
|
By
Rudolf J Streif
· #56327
·
|
|
linux-firmware_20211216
Thanks, Khem. I sent a patch to OE.
Thanks, Khem. I sent a patch to OE.
|
By
Rudolf J Streif
· #55986
·
|
|
linux-firmware_20211216
I got a question about the linux-firmware-bcm4373 package. The link /lib/firmware/brcm/brcmfmac4373-sdio.clm_blob -> ../cypress/cyfmac4373-sdio.clm_blob is packaged into linux-firmware and not into li
I got a question about the linux-firmware-bcm4373 package. The link /lib/firmware/brcm/brcmfmac4373-sdio.clm_blob -> ../cypress/cyfmac4373-sdio.clm_blob is packaged into linux-firmware and not into li
|
By
Rudolf J Streif
· #55982
·
|
|
Honister broken WiFi communication
Hi JH, This would typically mean that you are actually connected to a wifi network but the interface did not receive a DHCP lease for the IP address. the 169.254. is local IPv4 IP address which the in
Hi JH, This would typically mean that you are actually connected to a wifi network but the interface did not receive a DHCP lease for the IP address. the 169.254. is local IPv4 IP address which the in
|
By
Rudolf J Streif
· #55925
·
|
|
Honister broken WiFi communication
Hi JH, Yes, I have, but with Network Manager instead of connman. WiFi works just fine. There are a lot of pieces in the chain and it is not obvious from your description where it is broken. If you run
Hi JH, Yes, I have, but with Network Manager instead of connman. WiFi works just fine. There are a lot of pieces in the chain and it is not obvious from your description where it is broken. If you run
|
By
Rudolf J Streif
· #55900
·
|
|
[WIC] bootimg-partition plugin
A not so well-known feature of the WIC bootimg-partition plugin is that it can install files into different partitions. For that the variable IMAGE_BOOT_FILES has to be defined as one of the following
A not so well-known feature of the WIC bootimg-partition plugin is that it can install files into different partitions. For that the variable IMAGE_BOOT_FILES has to be defined as one of the following
|
By
Rudolf J Streif
· #54800
·
|
|
Inactive service of hello world
#yocto
What does your 'Hello World' service do? Just print 'Hello World' to the console and then exit? If so that would be the reason why it is inactive. Systemd starts it and then it exits. Typically, servi
What does your 'Hello World' service do? Just print 'Hello World' to the console and then exit? If so that would be the reason why it is inactive. Systemd starts it and then it exits. Typically, servi
|
By
Rudolf J Streif
· #54671
·
|
|
Assign IP address at boot time
Not that I know of. Why anyway?
Not that I know of. Why anyway?
|
By
Rudolf J Streif
· #52669
·
|
|
Assign IP address at boot time
Preferred method for local configuration is using /etc/systemd/network. However, the probable reason why it did not work is that the file should be eth0.network. The name of the file(s) do not matter
Preferred method for local configuration is using /etc/systemd/network. However, the probable reason why it did not work is that the file should be eth0.network. The name of the file(s) do not matter
|
By
Rudolf J Streif
· #52657
·
|
|
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
·
|
|
Assign IP address at boot time
What is your startup manager? systemd or SysVInit?
What is your startup manager? systemd or SysVInit?
|
By
Rudolf J Streif
· #52649
·
|
|
Assign IP address at boot time
Hi there, That depends on whether or not you are using a network manager and if so which one. You haven't told us much about your board and it's network interfaces and how you built your system. To st
Hi there, That depends on whether or not you are using a network manager and if so which one. You haven't told us much about your board and it's network interfaces and how you built your system. To st
|
By
Rudolf J Streif
· #52637
·
|
|
Kernel panic - not syncing: VFS: Unable to mount root fs ...
Hi, Are you saying it worked before and now it does not anymore? Did you make changes to the device tree? Pretty much exactly what the message is saying: the kernel cannot find the root file system to
Hi, Are you saying it worked before and now it does not anymore? Did you make changes to the device tree? Pretty much exactly what the message is saying: the kernel cannot find the root file system to
|
By
Rudolf J Streif
· #52527
·
|
|
openjdk-8 multilib
Thanks, Richard. That's what I thought it is. Essentially, the includes are, as expected, resolved at parse time of the recipes, which makes entirely sense. The include files themselves conditionally
Thanks, Richard. That's what I thought it is. Essentially, the includes are, as expected, resolved at parse time of the recipes, which makes entirely sense. The include files themselves conditionally
|
By
Rudolf J Streif
· #52103
·
|
|
openjdk-8 multilib
I have been scratching my head over building openjdk-8 with multilib for an aarch64 system. Essentially, I want to use 32-bit OpenJDK on the 64-bit system. Theoretically adding to local.conf require c
I have been scratching my head over building openjdk-8 with multilib for an aarch64 system. Essentially, I want to use 32-bit OpenJDK on the 64-bit system. Theoretically adding to local.conf require c
|
By
Rudolf J Streif
· #52101
·
|
|
Hardware video decode on RPi3
Thanks, Khem. Yes, I am. I actually discovered what the problem was: I built my system for 64-bit but Broadcom's proprietary libraries are 32-bit. I switched the system to 32-bit and now gst-inspect s
Thanks, Khem. Yes, I am. I actually discovered what the problem was: I built my system for 64-bit but Broadcom's proprietary libraries are 32-bit. I switched the system to 32-bit and now gst-inspect s
|
By
Rudolf J Streif
· #51529
·
|
|
Hardware video decode on RPi3
I am trying to play back mp4 video (venerable Big Buck Bunny at this time) on RPi3. I added gstreamer1.0, gstreamer1.0-omx and the plugins to the image. libgstomx.so is installed in usr/lib/gstreamer-
I am trying to play back mp4 video (venerable Big Buck Bunny at this time) on RPi3. I added gstreamer1.0, gstreamer1.0-omx and the plugins to the image. libgstomx.so is installed in usr/lib/gstreamer-
|
By
Rudolf J Streif
· #51506
·
|