Skip to content
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

arduino sketch does not work in branch thud #78

Open
xlla opened this issue Nov 22, 2019 · 66 comments
Open

arduino sketch does not work in branch thud #78

xlla opened this issue Nov 22, 2019 · 66 comments
Labels
Arduino Arduino library and SDK help wanted

Comments

@xlla
Copy link

xlla commented Nov 22, 2019

I am use arduino library, 1.6.7+1.0

after compile and upload sketch, it was running but not work as expect.

should I upgrade sysroot in packages/Intel/hardware/i686/1.6.7+1.0, and patch some file to work with chardev ?

since there are tons of arduino libraries, if we can still support arduino framework, then everything is easy.

@htot
Copy link
Member

htot commented Nov 22, 2019

I don't know. What sketch is problematic?

@xlla
Copy link
Author

xlla commented Nov 23, 2019

sorry, I am messed up.
It even can't upload sketch into thud version edison, since there is none tty serial port under list.
port
and no sketch folder under root

root@edison:~# ls /sketch
ls: cannot access '/sketch': No such file or directory

compare to firmware 160606, poky 1.7.3 board
port1
root@localhost:# ls /sketch/
sketch.elf sketch.elf.old
root@localhost:
# ps |grep sketch
207 root 1728 S /opt/edison/sketch_reset -i 207 -o 215 -s /opt/ediso
360 root 2660 S grep sketch

I found that the arduino framework lib need be patched to use chardev interface to manipulate mux/pullup/gpio, this is beyond my ability :(

I think I should give up arduino framework and looking for some python/nodejs libs as substitute.

@htot
Copy link
Member

htot commented Nov 23, 2019

I never sketches. But are you sure the problem is with corelibs-edison?

I think we are probably missing a server on edison, f.i. clloader.

I removed this at a certain point as it didn't want to build, but it may be easier to fix than it seems. There are other servers removed too, compare thud to original.

@htot
Copy link
Member

htot commented Nov 24, 2019

I just added a patch to my warrior branch that fixes clloader. Would that restore the connection to the Edison for you?
I just downloaded the linux version of the Arduino IDE. I find that on the linux host I need to create the serial port as described here. Then I can connect to port /dev/ttyUSB1.

However when installing the board installation fails as the absolute path to the sdk does not exist (/opt/poky-edison/... wrong version).

Clicking on / shows (translated):
BN: Unknown board
VID: 1D6B
PID: 0104
SN: Upload a schets to do this
(this also means that on windows you probably need to install a driver, which won't work for the current VID/PID).

So, you need to build the arduino SDK first (I think make arduino-toolchain, but I never tried that). And then create some symlinks to fool the installation on the version).

To go back to the known VID/PID we would need to fixup this file to the VID/PID expected.

Further I found

launcher.sh[26771]: Opened /dev/ttyGS0 as inputOpened /dev/ttyGS0 as output/sketch/sketch.elf file does not exist or invalid permissions
sketch_reset[26772]: sh: line 0: echo: write error: Invalid argument
kernel: export_store: invalid GPIO 215
sketch_reset[26772]: sh: /sys/class/gpio/gpio215/direction: No such file or directory
sketch_reset[26772]: sh: /sys/class/gpio/gpio215/value: No such file or directory
sketch_reset[26772]: sh: /sys/class/gpio/gpio215/value: No such file or directory
sketch_reset[26772]: sh: line 0: echo: write error: Invalid argument
kernel: export_store: invalid GPIO 207
sketch_reset[26772]: sh: /sys/class/gpio/gpio207/direction: No such file or directory
sketch_reset[26772]: sh: /sys/class/gpio/gpio207/edge: No such file or directory
sketch_reset[26772]: Failed to open:/sys/class/gpio/gpio207/value
systemd[1]: sketch_reset.service: Main process exited, code=exited, status=1/FAILURE
systemd[1]: sketch_reset.service: Failed with result 'exit-code'.

which means this file needs to be patched to use libgpiod.

Unfortunately I have no experience writing arduino sketches, so I can't do all the above, but I can provide suggestions if needed. Patches restoring Arduino sketch support are very welcome!

@xlla
Copy link
Author

xlla commented Feb 16, 2020

I am glad to heard that the Arduino sketches might be got support.
after migrate to branch warrior, many hours to fetch sources and compile packages, flash firmware, and now clloader and /sketch was back.

root@edison:~# uname -a
Linux edison 5.4.0-edison-acpi-standard #1 SMP Sat Feb 15 19:22:41 UTC 2020 i686 i686 i386 GNU/Linux
root@edison:~# ls /sketch/
root@edison:~# ps |grep sketch
 2485 root      3768 S    grep sketch
root@edison:~# ls /opt/edison/
clloader         launcher.sh      sketch_reset     sketch_reset.sh
root@edison:~# systemctl status clloader
● clloader.service - Daemon to handle arduino sketches
   Loaded: loaded (/lib/systemd/system/clloader.service; enabled; vendor preset: enabled)
   Active: active (running) since Sat 2020-02-15 17:20:12 UTC; 6min ago
 Main PID: 538 (launcher.sh)
   CGroup: /system.slice/clloader.service
           ├─ 538 /bin/sh /opt/edison/launcher.sh
           └─2710 usleep 200000

Feb 15 17:20:12 edison systemd[1]: Started Daemon to handle arduino sketches.

to restore Arduino IDE's function, I will try to change gadget vid/pid to original 8087:0a9e, then manage to patch script to use libgpiod, and build a new sdk for Arduino library.

I will report result late.

@htot
Copy link
Member

htot commented Feb 16, 2020

@xlla that would be great!

In the meanwhile I am messing with Zeus and starting to use btrfs as a file system so I need a bit of time to stabilize that before I can test your work.

@xlla
Copy link
Author

xlla commented Feb 16, 2020

@htot after changed vid/pid, it still not present in Arduino IDE's port list.

xlla$ lsusb
Bus 020 Device 018: ID 0403:6001 Future Technology Devices International Limited FT232R USB UART  Serial: A903BX28
Bus 020 Device 022: ID 8087:0a9e Intel Corporation USBArmory Gadget  Serial: 0123456789abcdef
xlla$ ls /dev/cu. (press Tab)
cu.usbserial-A903BX28

no cu.usbmodem-xxx appeared.
compare to official firmware,

xlla$ lsusb
Bus 020 Device 015: ID 0403:6001 Future Technology Devices International Limited FT232R USB UART  Serial: A402EXFU
Bus 020 Device 017: ID 8087:0a9e Intel Corporation Edison  Serial: c2xxxxxxxxxxxxxx
xlla$ ls /dev/cu. (press Tab)
cu.usbserial-A402EXFU
cu.usbmodem14213

I don't know wherever should be modified to let my os recognize the usb gadget as original Edison board's.

current usb Name was "Intel Corporation USBArmory Gadget" instead of "Intel Corporation Edison".

@xlla
Copy link
Author

xlla commented Feb 16, 2020

@andy-shev , thanks for your hard work to bring new version of u-boot to us.
when I look at boot log, I found that kernel boot args was not appeared.

U-Boot 2020.01 (Feb 15 2020 - 18:23:23 +0000)

CPU:   Genuine Intel(R) CPU   4000  @  500MHz
DRAM:  980.6 MiB
WDT:   Started with servicing (60s timeout)
MMC:   mmc@ff3fc000: 0, mmc@ff3fa000: 1
Loading Environment from MMC... OK
In:    serial
Out:   serial
Err:   serial
Net:   No ethernet found.
Hit any key to stop autoboot:  0
Target:blank
Partitioning already done...
Flashing already done...
11967552 bytes read in 516 ms (22.1 MiB/s)
Valid Boot Flag
Setup Size = 0x00004000
Magic signature found
Using boot protocol version 2.0d
Linux kernel version 5.4.0-edison-acpi-standard (oe-user@oe-host) #1 SMP Sat Feb 15 19:22:41 UTC 2020
Building b
          Starting version 241-214-gd1cc09a+
Kernel with acpi enabled detected
Loading acpi tables

this is log of u-boot 2019.04

U-Boot 2019.04 (Oct 28 2019 - 07:55:21 +0000)
CPU:   Genuine Intel(R) CPU   4000  @  500MHz
DRAM:  980.6 MiB
MMC:   mmc@ff3fc000: 0, mmc@ff3fa000: 1
Loading Environment from MMC... OK
In:    serial
Out:   serial
Err:   serial
Saving Environment to MMC... Writing to redundant MMC(0)... OK
Saving Environment to MMC... Writing to MMC(0)... OK
Net:   No ethernet found.

Kernel command line: "root=/dev/mmcblk0p8 rootfstype=ext4 console=ttyS2,115200n8 earlyprintk=ttyS2,115200n8,keep loglevel=4 g_multi.ethernet_config=cdc systemd.unit=multi-user.target hardware_id=00 g_multi.iSerialNumber=8xxxxxxxxxxxxxxxxxc g_multi.dev_addr=02:00:86:0a:57:7c platform_mrfld_audio.audio_codec=dummy"

@htot
Copy link
Member

htot commented Feb 16, 2020

Yeah, the whole gadget subsystem has been revised. The file configuring it now is here:
https://github.com/edison-fw/meta-intel-edison/blob/warrior/meta-intel-edison-bsp/recipes-support/gadget/files/conf-gadget.sh

@xlla
Copy link
Author

xlla commented Feb 16, 2020

I see it,
in original firmware,
root@localhost:~# cat /etc/modprobe.d/g_multi.conf
options g_multi file=/dev/mmcblk0p9 stall=0 idVendor=0x8087 idProduct=0x0A9E iProduct=Edison iManufacturer=Intel

in warrior
root@edison:~# cat /etc/modprobe.d/g_multi.conf
cat: /etc/modprobe.d/g_multi.conf: No such file or directory

@andy-shev
Copy link
Contributor

@andy-shev , thanks for your hard work to bring new version of u-boot to us.
when I look at boot log, I found that kernel boot args was not appeared.
...
Kernel command line: "root=/dev/mmcblk0p8 rootfstype=ext4 console=ttyS2,115200n8 earlyprintk=ttyS2,115200n8,keep loglevel=4 g_multi.ethernet_config=cdc systemd.unit=multi-user.target hardware_id=00 g_multi.iSerialNumber=8xxxxxxxxxxxxxxxxxc g_multi.dev_addr=02:00:86:0a:57:7c platform_mrfld_audio.audio_codec=dummy"

I didn't quite get this. do you mean that in newer U-Boot you can't boot it because there is no kernel command line? Or it simple didn't appear on the console and everything is fine when you do cat /proc/cmdline in the shell?

@htot
Copy link
Member

htot commented Feb 16, 2020

@xlla AFAIK these lines options g_multi file=/dev/mmcblk0p9 stall=0 idVendor=0x8087 idProduct=0x0A9E iProduct=Edison iManufacturer=Intel and g_multi.dev_addr=02:00:86:0a:57:7c are not used at all any more.

As I said gadget vid/pid is set in conf-gadget.sh

@xlla
Copy link
Author

xlla commented Feb 17, 2020

@andy-shev yes, It dit boot, just simple did not appear on console.
I can see kernel command line when I execute 'cat /proc/cmdline'. I learned it!

@htot
Copy link
Member

htot commented Feb 17, 2020

echo 0x1d6b > idVendor # Linux Foundation
echo 0x0104 > idProduct # Multifunction Composite Gadget

@xlla
Copy link
Author

xlla commented Feb 17, 2020

reference to https://software.intel.com/en-us/installing-drivers-for-intel-edison-board-with-windows
we need "Composite Device Class (CDC) for programming the board via the Arduino* IDE"
I think it need acm instead of gser to work with Arduino IDE, but I don't know how to configure it correctly.

@andy-shev
Copy link
Contributor

@andy-shev yes, It dit boot, just simple did not appear on console.
I can see kernel command line when I execute 'cat /proc/cmdline'. I learned it!

It's probably U-Boot configuration or U-Boot itself change... However, I don't see any changes in the code for this.

@xlla
Copy link
Author

xlla commented Feb 17, 2020

If I change gser to acm, then everything is disappear.
mkdir functions/acm.usb0
ln -s functions/acm.usb0 configs/c.1/

so I restore them to gser.
I can't get my mac osx to recognize this gadget even I am using a known pid/vid, it is only in lsusb list, but there is none in /dev/.

then I connect it to another windows 10 host, no luck.

finally, I connect it to a Linux host, still no interface under /dev; after execute "echo 0x8087 0x0a99 >/sys/bus/usb-serial/drivers/generic/new_id", a new interface ttyUSB1 appears, and Arduino IDE recognize it as Intel Edison board.
gadget

@xlla
Copy link
Author

xlla commented Feb 17, 2020

now I can move on and try build arduino sdk, but encounter many errors:

very long logs, Click to expand

```

xlla@u18-1:~/develop/git/out/linux64/build$ bitbake arduino-toolchain
Loading cache: 100% |#############################################################################################| Time: 0:00:01
Loaded 3283 entries from dependency cache.
Parsing recipes: 100% |###########################################################################################| Time: 0:00:02
Parsing of 2213 .bb files complete (2212 cached, 1 parsed). 3284 targets, 301 skipped, 0 masked, 0 errors.
NOTE: Resolving any missing task queue dependencies

Build Configuration:
BB_VERSION = "1.42.0"
BUILD_SYS = "x86_64-linux"
NATIVELSBSTRING = "universal"
TARGET_SYS = "i686-poky-linux"
MACHINE = "edison"
DISTRO = "poky-edison"
DISTRO_VERSION = "2.7.2"
TUNE_FEATURES = "m32 corei7"
TARGET_FPU = ""
meta
meta-poky
meta-yocto-bsp = "warrior:4edf4eb9cc86fbd4b51240fae527c1b97a7ace74"
meta-oe
meta-python
meta-networking = "warrior:a24acf94d48d635eca668ea34598c6e5c857e3f8"
meta-intel = "warrior:29ee4852a05931dcf856670d9d8a3c3077a40fe8"
meta-intel-edison-bsp
meta-intel-edison-distro
meta-intel-arduino
meta-arduino = "master:d66c23e7c5c51512e9ad292034c8cdb368a65f2e"
meta-acpi = "eds-5.0.0:abf2a7c62b372110f3fddf7af26debf753742e40"

Initialising tasks: 100% |########################################################################################| Time: 0:00:04
Sstate summary: Wanted 91 Found 0 Missed 91 Current 843 (0% match, 90% complete)
NOTE: Executing SetScene Tasks
NOTE: Executing RunQueue Tasks
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/swaplabel contained in package nativesdk-util-linux-swaplabel requires libuuid.so.1(UUID_1.0)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-swaplabel? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/swaplabel contained in package nativesdk-util-linux-swaplabel requires libblkid.so.1(BLKID_2.17)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-swaplabel? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/swaplabel contained in package nativesdk-util-linux-swaplabel requires libblkid.so.1(BLKID_2.15)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-swaplabel? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/swaplabel contained in package nativesdk-util-linux-swaplabel requires libblkid.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-swaplabel? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/swaplabel contained in package nativesdk-util-linux-swaplabel requires libuuid.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-swaplabel? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/sfdisk contained in package nativesdk-util-linux-sfdisk requires libsmartcols.so.1(SMARTCOLS_2.25)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-sfdisk? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/sfdisk contained in package nativesdk-util-linux-sfdisk requires libfdisk.so.1(FDISK_2.28)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-sfdisk? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/sfdisk contained in package nativesdk-util-linux-sfdisk requires libfdisk.so.1(FDISK_2.29)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-sfdisk? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/sfdisk contained in package nativesdk-util-linux-sfdisk requires libfdisk.so.1(FDISK_2.30)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-sfdisk? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/sfdisk contained in package nativesdk-util-linux-sfdisk requires libfdisk.so.1(FDISK_2.27)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-sfdisk? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/sfdisk contained in package nativesdk-util-linux-sfdisk requires libfdisk.so.1(FDISK_2.31)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-sfdisk? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/sfdisk contained in package nativesdk-util-linux-sfdisk requires libfdisk.so.1(FDISK_2.26)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-sfdisk? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/sfdisk contained in package nativesdk-util-linux-sfdisk requires libfdisk.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-sfdisk? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/sfdisk contained in package nativesdk-util-linux-sfdisk requires libblkid.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-sfdisk? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/sfdisk contained in package nativesdk-util-linux-sfdisk requires libuuid.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-sfdisk? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/sfdisk contained in package nativesdk-util-linux-sfdisk requires libsmartcols.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-sfdisk? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/lsmem contained in package nativesdk-util-linux-lsmem requires libsmartcols.so.1(SMARTCOLS_2.27)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-lsmem? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/lsmem contained in package nativesdk-util-linux-lsmem requires libsmartcols.so.1(SMARTCOLS_2.25)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-lsmem? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/lsmem contained in package nativesdk-util-linux-lsmem requires libsmartcols.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-lsmem? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/lsblk contained in package nativesdk-util-linux-lsblk requires libblkid.so.1(BLKID_2.17)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-lsblk? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/lsblk contained in package nativesdk-util-linux-lsblk requires libblkid.so.1(BLKID_2.15)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-lsblk? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/lsblk contained in package nativesdk-util-linux-lsblk requires libsmartcols.so.1(SMARTCOLS_2.30)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-lsblk? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/lsblk contained in package nativesdk-util-linux-lsblk requires libsmartcols.so.1(SMARTCOLS_2.27)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-lsblk? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/lsblk contained in package nativesdk-util-linux-lsblk requires libsmartcols.so.1(SMARTCOLS_2.25)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-lsblk? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/lsblk contained in package nativesdk-util-linux-lsblk requires libmount.so.1(MOUNT_2.22)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-lsblk? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/lsblk contained in package nativesdk-util-linux-lsblk requires libmount.so.1(MOUNT_2.24)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-lsblk? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/lsblk contained in package nativesdk-util-linux-lsblk requires libmount.so.1(MOUNT_2.19)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-lsblk? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/lsblk contained in package nativesdk-util-linux-lsblk requires libblkid.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-lsblk? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/lsblk contained in package nativesdk-util-linux-lsblk requires libmount.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-lsblk? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/lsblk contained in package nativesdk-util-linux-lsblk requires libuuid.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-lsblk? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/lsblk contained in package nativesdk-util-linux-lsblk requires libsmartcols.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-lsblk? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/uuidparse contained in package nativesdk-util-linux-uuidparse requires libuuid.so.1(UUID_1.0)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-uuidparse? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/uuidparse contained in package nativesdk-util-linux-uuidparse requires libsmartcols.so.1(SMARTCOLS_2.27)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-uuidparse? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/uuidparse contained in package nativesdk-util-linux-uuidparse requires libsmartcols.so.1(SMARTCOLS_2.25)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-uuidparse? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/uuidparse contained in package nativesdk-util-linux-uuidparse requires libuuid.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-uuidparse? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/uuidparse contained in package nativesdk-util-linux-uuidparse requires libsmartcols.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-uuidparse? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/eject.util-linux contained in package nativesdk-util-linux-eject requires libmount.so.1(MOUNT_2.24)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-eject? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/eject.util-linux contained in package nativesdk-util-linux-eject requires libmount.so.1(MOUNT_2.19)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-eject? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/eject.util-linux contained in package nativesdk-util-linux-eject requires libmount.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-eject? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/eject.util-linux contained in package nativesdk-util-linux-eject requires libblkid.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-eject? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/eject.util-linux contained in package nativesdk-util-linux-eject requires libuuid.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-eject? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/prlimit contained in package nativesdk-util-linux-prlimit requires libsmartcols.so.1(SMARTCOLS_2.25)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-prlimit? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/prlimit contained in package nativesdk-util-linux-prlimit requires libsmartcols.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-prlimit? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/lib/libblkid.so.1.1.0 contained in package nativesdk-util-linux-libblkid requires libuuid.so.1(UUID_1.0)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-libblkid? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/lib/libblkid.so.1.1.0 contained in package nativesdk-util-linux-libblkid requires libuuid.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-libblkid? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/findmnt contained in package nativesdk-util-linux-findmnt requires libblkid.so.1(BLKID_1.0)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-findmnt? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/findmnt contained in package nativesdk-util-linux-findmnt requires libsmartcols.so.1(SMARTCOLS_2.28)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-findmnt? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/findmnt contained in package nativesdk-util-linux-findmnt requires libsmartcols.so.1(SMARTCOLS_2.27)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-findmnt? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/findmnt contained in package nativesdk-util-linux-findmnt requires libsmartcols.so.1(SMARTCOLS_2.25)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-findmnt? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/findmnt contained in package nativesdk-util-linux-findmnt requires libmount.so.1(MOUNT_2.21)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-findmnt? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/findmnt contained in package nativesdk-util-linux-findmnt requires libmount.so.1(MOUNT_2.22)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-findmnt? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/findmnt contained in package nativesdk-util-linux-findmnt requires libmount.so.1(MOUNT_2.23)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-findmnt? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/findmnt contained in package nativesdk-util-linux-findmnt requires libmount.so.1(MOUNT_2.25)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-findmnt? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/findmnt contained in package nativesdk-util-linux-findmnt requires libmount.so.1(MOUNT_2.20)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-findmnt? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/findmnt contained in package nativesdk-util-linux-findmnt requires libmount.so.1(MOUNT_2.24)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-findmnt? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/findmnt contained in package nativesdk-util-linux-findmnt requires libmount.so.1(MOUNT_2.19)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-findmnt? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/findmnt contained in package nativesdk-util-linux-findmnt requires libmount.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-findmnt? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/findmnt contained in package nativesdk-util-linux-findmnt requires libblkid.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-findmnt? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/findmnt contained in package nativesdk-util-linux-findmnt requires libsmartcols.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-findmnt? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/findmnt contained in package nativesdk-util-linux-findmnt requires libuuid.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-findmnt? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/lib/libfdisk.so.1.1.0 contained in package nativesdk-util-linux-libfdisk requires libblkid.so.1(BLKID_2.21)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-libfdisk? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/lib/libfdisk.so.1.1.0 contained in package nativesdk-util-linux-libfdisk requires libblkid.so.1(BLKID_2.17)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-libfdisk? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/lib/libfdisk.so.1.1.0 contained in package nativesdk-util-linux-libfdisk requires libblkid.so.1(BLKID_2.15)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-libfdisk? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/lib/libfdisk.so.1.1.0 contained in package nativesdk-util-linux-libfdisk requires libuuid.so.1(UUID_1.0)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-libfdisk? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/lib/libfdisk.so.1.1.0 contained in package nativesdk-util-linux-libfdisk requires libblkid.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-libfdisk? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/lib/libfdisk.so.1.1.0 contained in package nativesdk-util-linux-libfdisk requires libuuid.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-libfdisk? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/lscpu contained in package nativesdk-util-linux-lscpu requires libsmartcols.so.1(SMARTCOLS_2.27)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-lscpu? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/lscpu contained in package nativesdk-util-linux-lscpu requires libsmartcols.so.1(SMARTCOLS_2.25)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-lscpu? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/lscpu contained in package nativesdk-util-linux-lscpu requires libsmartcols.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-lscpu? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/sbin/cfdisk contained in package nativesdk-util-linux-cfdisk requires libmount.so.1(MOUNT_2.19)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-cfdisk? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/sbin/cfdisk contained in package nativesdk-util-linux-cfdisk requires libmount.so.1(MOUNT_2.24)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-cfdisk? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/sbin/cfdisk contained in package nativesdk-util-linux-cfdisk requires libsmartcols.so.1(SMARTCOLS_2.28)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-cfdisk? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/sbin/cfdisk contained in package nativesdk-util-linux-cfdisk requires libsmartcols.so.1(SMARTCOLS_2.25)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-cfdisk? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/sbin/cfdisk contained in package nativesdk-util-linux-cfdisk requires libfdisk.so.1(FDISK_2.28)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-cfdisk? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/sbin/cfdisk contained in package nativesdk-util-linux-cfdisk requires libfdisk.so.1(FDISK_2.31)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-cfdisk? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/sbin/cfdisk contained in package nativesdk-util-linux-cfdisk requires libfdisk.so.1(FDISK_2.26)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-cfdisk? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/sbin/cfdisk contained in package nativesdk-util-linux-cfdisk requires libsmartcols.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-cfdisk? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/sbin/cfdisk contained in package nativesdk-util-linux-cfdisk requires libfdisk.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-cfdisk? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/sbin/cfdisk contained in package nativesdk-util-linux-cfdisk requires libmount.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-cfdisk? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/sbin/cfdisk contained in package nativesdk-util-linux-cfdisk requires libblkid.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-cfdisk? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/sbin/cfdisk contained in package nativesdk-util-linux-cfdisk requires libuuid.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-cfdisk? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/bin/umount.util-linux contained in package nativesdk-util-linux-umount requires libmount.so.1(MOUNT_2.25)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-umount? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/bin/umount.util-linux contained in package nativesdk-util-linux-umount requires libmount.so.1(MOUNT_2.30)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-umount? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/bin/umount.util-linux contained in package nativesdk-util-linux-umount requires libmount.so.1(MOUNT_2.20)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-umount? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/bin/umount.util-linux contained in package nativesdk-util-linux-umount requires libmount.so.1(MOUNT_2.23)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-umount? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/bin/umount.util-linux contained in package nativesdk-util-linux-umount requires libmount.so.1(MOUNT_2.22)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-umount? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/bin/umount.util-linux contained in package nativesdk-util-linux-umount requires libmount.so.1(MOUNT_2.21)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-umount? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/bin/umount.util-linux contained in package nativesdk-util-linux-umount requires libmount.so.1(MOUNT_2.24)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-umount? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/bin/umount.util-linux contained in package nativesdk-util-linux-umount requires libmount.so.1(MOUNT_2.19)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-umount? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/bin/umount.util-linux contained in package nativesdk-util-linux-umount requires libmount.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-umount? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/bin/umount.util-linux contained in package nativesdk-util-linux-umount requires libblkid.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-umount? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/bin/umount.util-linux contained in package nativesdk-util-linux-umount requires libuuid.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-umount? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/uuidd contained in package nativesdk-util-linux-uuidd requires libuuid.so.1(UUIDD_PRIVATE)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-uuidd? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/uuidd contained in package nativesdk-util-linux-uuidd requires libuuid.so.1(UUID_1.0)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-uuidd? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/uuidd contained in package nativesdk-util-linux-uuidd requires libuuid.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-uuidd? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/column contained in package nativesdk-util-linux-column requires libsmartcols.so.1(SMARTCOLS_2.30)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-column? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/column contained in package nativesdk-util-linux-column requires libsmartcols.so.1(SMARTCOLS_2.31)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-column? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/column contained in package nativesdk-util-linux-column requires libsmartcols.so.1(SMARTCOLS_2.29)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-column? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/column contained in package nativesdk-util-linux-column requires libsmartcols.so.1(SMARTCOLS_2.27)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-column? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/column contained in package nativesdk-util-linux-column requires libsmartcols.so.1(SMARTCOLS_2.25)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-column? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/column contained in package nativesdk-util-linux-column requires libsmartcols.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-column? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/sbin/swapon.util-linux contained in package nativesdk-util-linux-swapon requires libblkid.so.1(BLKID_2.17)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-swapon? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/sbin/swapon.util-linux contained in package nativesdk-util-linux-swapon requires libblkid.so.1(BLKID_2.15)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-swapon? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/sbin/swapon.util-linux contained in package nativesdk-util-linux-swapon requires libsmartcols.so.1(SMARTCOLS_2.25)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-swapon? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/sbin/swapon.util-linux contained in package nativesdk-util-linux-swapon requires libmount.so.1(MOUNT_2.20)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-swapon? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/sbin/swapon.util-linux contained in package nativesdk-util-linux-swapon requires libmount.so.1(MOUNT_2.21)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-swapon? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/sbin/swapon.util-linux contained in package nativesdk-util-linux-swapon requires libmount.so.1(MOUNT_2.22)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-swapon? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/sbin/swapon.util-linux contained in package nativesdk-util-linux-swapon requires libmount.so.1(MOUNT_2.24)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-swapon? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/sbin/swapon.util-linux contained in package nativesdk-util-linux-swapon requires libmount.so.1(MOUNT_2.19)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-swapon? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/sbin/swapon.util-linux contained in package nativesdk-util-linux-swapon requires libblkid.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-swapon? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/sbin/swapon.util-linux contained in package nativesdk-util-linux-swapon requires libmount.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-swapon? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/sbin/swapon.util-linux contained in package nativesdk-util-linux-swapon requires libuuid.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-swapon? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/sbin/swapon.util-linux contained in package nativesdk-util-linux-swapon requires libsmartcols.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-swapon? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/bin/mountpoint.util-linux contained in package nativesdk-util-linux-mountpoint requires libmount.so.1(MOUNT_2.19)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-mountpoint? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/bin/mountpoint.util-linux contained in package nativesdk-util-linux-mountpoint requires libmount.so.1(MOUNT_2.24)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-mountpoint? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/bin/mountpoint.util-linux contained in package nativesdk-util-linux-mountpoint requires libmount.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-mountpoint? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/bin/mountpoint.util-linux contained in package nativesdk-util-linux-mountpoint requires libblkid.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-mountpoint? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/bin/mountpoint.util-linux contained in package nativesdk-util-linux-mountpoint requires libuuid.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-mountpoint? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/sbin/blkid.util-linux contained in package nativesdk-util-linux-blkid requires libblkid.so.1(BLKID_2.18)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-blkid? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/sbin/blkid.util-linux contained in package nativesdk-util-linux-blkid requires libblkid.so.1(BLKID_2.17)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-blkid? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/sbin/blkid.util-linux contained in package nativesdk-util-linux-blkid requires libblkid.so.1(BLKID_2.20)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-blkid? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/sbin/blkid.util-linux contained in package nativesdk-util-linux-blkid requires libblkid.so.1(BLKID_2.15)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-blkid? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/sbin/blkid.util-linux contained in package nativesdk-util-linux-blkid requires libblkid.so.1(BLKID_1.0)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-blkid? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/sbin/blkid.util-linux contained in package nativesdk-util-linux-blkid requires libblkid.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-blkid? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/sbin/blkid.util-linux contained in package nativesdk-util-linux-blkid requires libuuid.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-blkid? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/zramctl contained in package nativesdk-util-linux-zramctl requires libsmartcols.so.1(SMARTCOLS_2.25)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-zramctl? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/zramctl contained in package nativesdk-util-linux-zramctl requires libsmartcols.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-zramctl? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/wipefs contained in package nativesdk-util-linux-wipefs requires libblkid.so.1(BLKID_2.21)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-wipefs? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/wipefs contained in package nativesdk-util-linux-wipefs requires libblkid.so.1(BLKID_2_31)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-wipefs? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/wipefs contained in package nativesdk-util-linux-wipefs requires libblkid.so.1(BLKID_2.18)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-wipefs? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/wipefs contained in package nativesdk-util-linux-wipefs requires libblkid.so.1(BLKID_2.23)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-wipefs? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/wipefs contained in package nativesdk-util-linux-wipefs requires libblkid.so.1(BLKID_2.17)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-wipefs? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/wipefs contained in package nativesdk-util-linux-wipefs requires libblkid.so.1(BLKID_2.15)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-wipefs? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/wipefs contained in package nativesdk-util-linux-wipefs requires libsmartcols.so.1(SMARTCOLS_2.27)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-wipefs? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/wipefs contained in package nativesdk-util-linux-wipefs requires libsmartcols.so.1(SMARTCOLS_2.25)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-wipefs? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/wipefs contained in package nativesdk-util-linux-wipefs requires libblkid.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-wipefs? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/wipefs contained in package nativesdk-util-linux-wipefs requires libuuid.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-wipefs? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/wipefs contained in package nativesdk-util-linux-wipefs requires libsmartcols.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-wipefs? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/sbin/swapoff.util-linux contained in package nativesdk-util-linux-swapoff requires libblkid.so.1(BLKID_1.0)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-swapoff? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/sbin/swapoff.util-linux contained in package nativesdk-util-linux-swapoff requires libblkid.so.1(BLKID_2.17)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-swapoff? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/sbin/swapoff.util-linux contained in package nativesdk-util-linux-swapoff requires libblkid.so.1(BLKID_2.15)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-swapoff? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/sbin/swapoff.util-linux contained in package nativesdk-util-linux-swapoff requires libmount.so.1(MOUNT_2.21)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-swapoff? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/sbin/swapoff.util-linux contained in package nativesdk-util-linux-swapoff requires libmount.so.1(MOUNT_2.22)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-swapoff? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/sbin/swapoff.util-linux contained in package nativesdk-util-linux-swapoff requires libmount.so.1(MOUNT_2.24)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-swapoff? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/sbin/swapoff.util-linux contained in package nativesdk-util-linux-swapoff requires libmount.so.1(MOUNT_2.19)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-swapoff? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/sbin/swapoff.util-linux contained in package nativesdk-util-linux-swapoff requires libmount.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-swapoff? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/sbin/swapoff.util-linux contained in package nativesdk-util-linux-swapoff requires libblkid.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-swapoff? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/sbin/swapoff.util-linux contained in package nativesdk-util-linux-swapoff requires libuuid.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-swapoff? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/findfs contained in package nativesdk-util-linux-findfs requires libblkid.so.1(BLKID_2.15)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-findfs? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/findfs contained in package nativesdk-util-linux-findfs requires libblkid.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-findfs? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/findfs contained in package nativesdk-util-linux-findfs requires libuuid.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-findfs? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/partx contained in package nativesdk-util-linux-partx requires libsmartcols.so.1(SMARTCOLS_2.25)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-partx? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/partx contained in package nativesdk-util-linux-partx requires libblkid.so.1(BLKID_1.0)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-partx? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/partx contained in package nativesdk-util-linux-partx requires libblkid.so.1(BLKID_2.18)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-partx? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/partx contained in package nativesdk-util-linux-partx requires libblkid.so.1(BLKID_2.30)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-partx? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/partx contained in package nativesdk-util-linux-partx requires libblkid.so.1(BLKID_2.15)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-partx? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/partx contained in package nativesdk-util-linux-partx requires libblkid.so.1(BLKID_2.17)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-partx? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/partx contained in package nativesdk-util-linux-partx requires libblkid.so.1(BLKID_2.25)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-partx? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/partx contained in package nativesdk-util-linux-partx requires libblkid.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-partx? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/partx contained in package nativesdk-util-linux-partx requires libuuid.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-partx? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/partx contained in package nativesdk-util-linux-partx requires libsmartcols.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-partx? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/rfkill.util-linux contained in package nativesdk-util-linux-rfkill requires libsmartcols.so.1(SMARTCOLS_2.27)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-rfkill? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/rfkill.util-linux contained in package nativesdk-util-linux-rfkill requires libsmartcols.so.1(SMARTCOLS_2.25)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-rfkill? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/rfkill.util-linux contained in package nativesdk-util-linux-rfkill requires libsmartcols.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-rfkill? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/fincore contained in package nativesdk-util-linux-fincore requires libsmartcols.so.1(SMARTCOLS_2.27)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-fincore? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/fincore contained in package nativesdk-util-linux-fincore requires libsmartcols.so.1(SMARTCOLS_2.25)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-fincore? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/fincore contained in package nativesdk-util-linux-fincore requires libsmartcols.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-fincore? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/uuidgen contained in package nativesdk-util-linux-uuidgen requires libuuid.so.1(UUID_2.31)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-uuidgen? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/uuidgen contained in package nativesdk-util-linux-uuidgen requires libuuid.so.1(UUID_1.0)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-uuidgen? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/uuidgen contained in package nativesdk-util-linux-uuidgen requires libuuid.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-uuidgen? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/lsipc contained in package nativesdk-util-linux-lsipc requires libsmartcols.so.1(SMARTCOLS_2.27)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-lsipc? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/lsipc contained in package nativesdk-util-linux-lsipc requires libsmartcols.so.1(SMARTCOLS_2.25)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-lsipc? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/lsipc contained in package nativesdk-util-linux-lsipc requires libsmartcols.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-lsipc? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/sbin/fsck.util-linux contained in package nativesdk-util-linux-fsck requires libblkid.so.1(BLKID_1.0)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-fsck? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/sbin/fsck.util-linux contained in package nativesdk-util-linux-fsck requires libblkid.so.1(BLKID_2.17)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-fsck? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/sbin/fsck.util-linux contained in package nativesdk-util-linux-fsck requires libmount.so.1(MOUNT_2.20)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-fsck? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/sbin/fsck.util-linux contained in package nativesdk-util-linux-fsck requires libmount.so.1(MOUNT_2.21)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-fsck? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/sbin/fsck.util-linux contained in package nativesdk-util-linux-fsck requires libmount.so.1(MOUNT_2.24)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-fsck? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/sbin/fsck.util-linux contained in package nativesdk-util-linux-fsck requires libmount.so.1(MOUNT_2.19)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-fsck? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/sbin/fsck.util-linux contained in package nativesdk-util-linux-fsck requires libmount.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-fsck? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/sbin/fsck.util-linux contained in package nativesdk-util-linux-fsck requires libblkid.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-fsck? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/sbin/fsck.util-linux contained in package nativesdk-util-linux-fsck requires libuuid.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-fsck? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/lsns contained in package nativesdk-util-linux-lsns requires libmount.so.1(MOUNT_2.19)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-lsns? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/lsns contained in package nativesdk-util-linux-lsns requires libsmartcols.so.1(SMARTCOLS_2.29)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-lsns? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/lsns contained in package nativesdk-util-linux-lsns requires libsmartcols.so.1(SMARTCOLS_2.27)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-lsns? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/lsns contained in package nativesdk-util-linux-lsns requires libsmartcols.so.1(SMARTCOLS_2.25)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-lsns? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/lsns contained in package nativesdk-util-linux-lsns requires libsmartcols.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-lsns? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/lsns contained in package nativesdk-util-linux-lsns requires libmount.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-lsns? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/lsns contained in package nativesdk-util-linux-lsns requires libblkid.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-lsns? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/lsns contained in package nativesdk-util-linux-lsns requires libuuid.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-lsns? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/sbin/mkswap.util-linux contained in package nativesdk-util-linux-mkswap requires libblkid.so.1(BLKID_2.21)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-mkswap? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/sbin/mkswap.util-linux contained in package nativesdk-util-linux-mkswap requires libblkid.so.1(BLKID_2.17)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-mkswap? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/sbin/mkswap.util-linux contained in package nativesdk-util-linux-mkswap requires libblkid.so.1(BLKID_2.15)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-mkswap? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/sbin/mkswap.util-linux contained in package nativesdk-util-linux-mkswap requires libuuid.so.1(UUID_1.0)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-mkswap? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/sbin/mkswap.util-linux contained in package nativesdk-util-linux-mkswap requires libuuid.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-mkswap? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/sbin/mkswap.util-linux contained in package nativesdk-util-linux-mkswap requires libblkid.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-mkswap? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/sbin/fstrim.util-linux contained in package nativesdk-util-linux-fstrim requires libmount.so.1(MOUNT_2.21)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-fstrim? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/sbin/fstrim.util-linux contained in package nativesdk-util-linux-fstrim requires libmount.so.1(MOUNT_2.25)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-fstrim? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/sbin/fstrim.util-linux contained in package nativesdk-util-linux-fstrim requires libmount.so.1(MOUNT_2.19)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-fstrim? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/sbin/fstrim.util-linux contained in package nativesdk-util-linux-fstrim requires libmount.so.1(MOUNT_2.24)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-fstrim? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/sbin/fstrim.util-linux contained in package nativesdk-util-linux-fstrim requires libmount.so.1(MOUNT_2.22)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-fstrim? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/sbin/fstrim.util-linux contained in package nativesdk-util-linux-fstrim requires libmount.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-fstrim? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/sbin/fstrim.util-linux contained in package nativesdk-util-linux-fstrim requires libblkid.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-fstrim? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/sbin/fstrim.util-linux contained in package nativesdk-util-linux-fstrim requires libuuid.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-fstrim? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/lslogins contained in package nativesdk-util-linux-lslogins requires libsmartcols.so.1(SMARTCOLS_2.25)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-lslogins? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/lslogins contained in package nativesdk-util-linux-lslogins requires libsmartcols.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-lslogins? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/sbin/fdisk.util-linux contained in package nativesdk-util-linux-fdisk requires libsmartcols.so.1(SMARTCOLS_2.25)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-fdisk? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/sbin/fdisk.util-linux contained in package nativesdk-util-linux-fdisk requires libfdisk.so.1(FDISK_2.28)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-fdisk? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/sbin/fdisk.util-linux contained in package nativesdk-util-linux-fdisk requires libfdisk.so.1(FDISK_2.30)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-fdisk? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/sbin/fdisk.util-linux contained in package nativesdk-util-linux-fdisk requires libfdisk.so.1(FDISK_2.27)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-fdisk? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/sbin/fdisk.util-linux contained in package nativesdk-util-linux-fdisk requires libfdisk.so.1(FDISK_2.31)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-fdisk? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/sbin/fdisk.util-linux contained in package nativesdk-util-linux-fdisk requires libfdisk.so.1(FDISK_2.29)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-fdisk? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/sbin/fdisk.util-linux contained in package nativesdk-util-linux-fdisk requires libfdisk.so.1(FDISK_2.32)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-fdisk? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/sbin/fdisk.util-linux contained in package nativesdk-util-linux-fdisk requires libfdisk.so.1(FDISK_2.26)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-fdisk? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/sbin/fdisk.util-linux contained in package nativesdk-util-linux-fdisk requires libfdisk.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-fdisk? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/sbin/fdisk.util-linux contained in package nativesdk-util-linux-fdisk requires libblkid.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-fdisk? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/sbin/fdisk.util-linux contained in package nativesdk-util-linux-fdisk requires libuuid.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-fdisk? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/sbin/fdisk.util-linux contained in package nativesdk-util-linux-fdisk requires libsmartcols.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-fdisk? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/lib/libmount.so.1.1.0 contained in package nativesdk-util-linux-libmount requires libblkid.so.1(BLKID_1.0)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-libmount? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/lib/libmount.so.1.1.0 contained in package nativesdk-util-linux-libmount requires libblkid.so.1(BLKID_2.17)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-libmount? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/lib/libmount.so.1.1.0 contained in package nativesdk-util-linux-libmount requires libblkid.so.1(BLKID_2.15)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-libmount? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/lib/libmount.so.1.1.0 contained in package nativesdk-util-linux-libmount requires libblkid.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-libmount? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/lib/libmount.so.1.1.0 contained in package nativesdk-util-linux-libmount requires libuuid.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-libmount? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/wdctl contained in package nativesdk-util-linux-wdctl requires libsmartcols.so.1(SMARTCOLS_2.25)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-wdctl? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/wdctl contained in package nativesdk-util-linux-wdctl requires libsmartcols.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-wdctl? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/sbin/losetup.util-linux contained in package nativesdk-util-linux-losetup requires libsmartcols.so.1(SMARTCOLS_2.27)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-losetup? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/sbin/losetup.util-linux contained in package nativesdk-util-linux-losetup requires libsmartcols.so.1(SMARTCOLS_2.25)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-losetup? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/sbin/losetup.util-linux contained in package nativesdk-util-linux-losetup requires libsmartcols.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-losetup? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/bin/mount.util-linux contained in package nativesdk-util-linux-mount requires libmount.so.1(MOUNT_2.25)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-mount? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/bin/mount.util-linux contained in package nativesdk-util-linux-mount requires libmount.so.1(MOUNT_2.30)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-mount? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/bin/mount.util-linux contained in package nativesdk-util-linux-mount requires libmount.so.1(MOUNT_2.20)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-mount? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/bin/mount.util-linux contained in package nativesdk-util-linux-mount requires libmount.so.1(MOUNT_2.22)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-mount? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/bin/mount.util-linux contained in package nativesdk-util-linux-mount requires libmount.so.1(MOUNT_2.21)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-mount? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/bin/mount.util-linux contained in package nativesdk-util-linux-mount requires libmount.so.1(MOUNT_2.24)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-mount? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/bin/mount.util-linux contained in package nativesdk-util-linux-mount requires libmount.so.1(MOUNT_2.19)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-mount? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/bin/mount.util-linux contained in package nativesdk-util-linux-mount requires libmount.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-mount? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/bin/mount.util-linux contained in package nativesdk-util-linux-mount requires libblkid.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-mount? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/bin/mount.util-linux contained in package nativesdk-util-linux-mount requires libuuid.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-mount? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/lslocks contained in package nativesdk-util-linux-lslocks requires libsmartcols.so.1(SMARTCOLS_2.27)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-lslocks? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/lslocks contained in package nativesdk-util-linux-lslocks requires libsmartcols.so.1(SMARTCOLS_2.25)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-lslocks? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/lslocks contained in package nativesdk-util-linux-lslocks requires libmount.so.1(MOUNT_2.22)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-lslocks? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/lslocks contained in package nativesdk-util-linux-lslocks requires libmount.so.1(MOUNT_2.19)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-lslocks? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/lslocks contained in package nativesdk-util-linux-lslocks requires libmount.so.1(MOUNT_2.24)(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-lslocks? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/lslocks contained in package nativesdk-util-linux-lslocks requires libmount.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-lslocks? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/lslocks contained in package nativesdk-util-linux-lslocks requires libblkid.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-lslocks? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/lslocks contained in package nativesdk-util-linux-lslocks requires libuuid.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-lslocks? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA Issue: /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/bin/lslocks contained in package nativesdk-util-linux-lslocks requires libsmartcols.so.1()(64bit), but no providers found in RDEPENDS_nativesdk-util-linux-lslocks? [file-rdeps]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: QA run found fatal errors. Please consider fixing them.
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa:
ERROR: nativesdk-util-linux-2.32.1-r0 do_package_qa: Function failed: do_package_qa
ERROR: Logfile of failure stored in: /home/xlla/develop/git/out/linux64/build/tmp/work/x86_64-nativesdk-pokysdk-linux/nativesdk-util-linux/2.32.1-r0/temp/log.do_package_qa.2392
ERROR: Task (virtual:nativesdk:/home/xlla/develop/git/out/linux64/poky/meta/recipes-core/util-linux/util-linux_2.32.1.bb:do_package_qa) failed with exit code '1'
NOTE: Tasks Summary: Attempted 2161 tasks of which 2148 didn't need to be rerun and 1 failed.

Summary: 1 task failed:
virtual:nativesdk:/home/xlla/develop/git/out/linux64/poky/meta/recipes-core/util-linux/util-linux_2.32.1.bb:do_package_qa
Summary: There were 250 ERROR messages shown, returning a non-zero exit code.

</p>
  
</details> 

@xlla
Copy link
Author

xlla commented Feb 17, 2020

I have manual replace content of poky/meta/recipes-core/util-linux/util-linux_2.32.1.bb with http://git.yoctoproject.org/cgit.cgi/poky/plain/meta/recipes-core/util-linux/util-linux_2.32.1.bb?h=warrior&id=bd374216048581bcb3ea54d69998342525cf2da5, and remove each line which contain "OLDHOST", now the errors was gone.

@xlla
Copy link
Author

xlla commented Feb 17, 2020

Errors back again, :(

ERROR: nativesdk-util-linux-2.32.1-r0 do_package: QA Issue: nativesdk-util-linux: Files/directories were installed but not shipped in any package:
  /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/sbin/partx
  /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/sbin/ldattach
  /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/sbin/readprofile
  /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/sbin/resizepart
  /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/sbin/uuidd
  /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/sbin/delpart
  /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/sbin/rfkill
  /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/sbin/addpart
  /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/sbin/rtcwake
  /opt/poky-edison/2.7.2/sysroots/x86_64-pokysdk-linux/usr/sbin/fdformat
Please set FILES such that these items are packaged. Alternatively if they are unneeded, avoid installing them or delete them within do_install.
nativesdk-util-linux: 10 installed and not shipped files. [installed-vs-shipped]
ERROR: nativesdk-util-linux-2.32.1-r0 do_package: Fatal QA errors found, failing task.
ERROR: nativesdk-util-linux-2.32.1-r0 do_package: 
ERROR: nativesdk-util-linux-2.32.1-r0 do_package: Function failed: do_package
ERROR: Logfile of failure stored in: /home/xlla/develop/git/out/linux64/build/tmp/work/x86_64-nativesdk-pokysdk-linux/nativesdk-util-linux/2.32.1-r0/temp/log.do_package.11706
ERROR: Task (virtual:nativesdk:/home/xlla/develop/git/out/linux64/poky/meta/recipes-core/util-linux/util-linux_2.32.1.bb:do_package) failed with exit code '1'

@htot
Copy link
Member

htot commented Feb 17, 2020

@andy-shev yes, It dit boot, just simple did not appear on console.
I can see kernel command line when I execute 'cat /proc/cmdline'. I learned it!

It's probably U-Boot configuration or U-Boot itself change... However, I don't see any changes in the code for this.

I don't have problems with U-Boot. Log file?

@htot
Copy link
Member

htot commented Feb 17, 2020

@xlla the problems you see may be related to your host. I am building on:

ferry@kalamata:~$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description:    Ubuntu 19.10
Release:        19.10
Codename:       eoan
ferry@kalamata:~$ uname -a
Linux kalamata 5.3.0-29-generic #31-Ubuntu SMP Fri Jan 17 17:27:26 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux

Nevertheless I see if I run make arduino-toolchain it complains in the very last step that tmp/deploy/sdk/poky-edison-glibc-x86_64-arduino-toolchain-corei7-64-edison-toolchain-2.7. 2.tar.xz does not exist!. Actually tmp/deploy/sdk is not existing.

And when I run make sdk only:

ferry@kalamata:~$ ls Develop/tmp/out/linux64/build/tmp/deploy/sdk
poky-edison-glibc-x86_64-edison-image-corei7-64-edison-toolchain-2.7.2.host.manifest
poky-edison-glibc-x86_64-edison-image-corei7-64-edison-toolchain-2.7.2.sh
poky-edison-glibc-x86_64-edison-image-corei7-64-edison-toolchain-2.7.2.target.manifest
poky-edison-glibc-x86_64-edison-image-corei7-64-edison-toolchain-2.7.2.testdata.json

It seems a small detail broke resulting in a missing .xz, shouldn't be to hard to fix.

@xlla
Copy link
Author

xlla commented Feb 18, 2020

However when installing the board installation fails as the absolute path to the sdk does not exist (/opt/poky-edison/... wrong version).

can you refer this mode +111 to fixed board installation problem, then try upload a simple test sketch ?

I have do upload but failed, just stuck and timeout.

@xlla
Copy link
Author

xlla commented Feb 18, 2020

directly execute "bitbake arduino-toolchain" or execute "make arduino-toolchain" all give out same errors. maybe I should update my build env.

xlla@u18-1:~/develop/git$ lsb_release -a
No LSB modules are available.
Distributor ID:	Ubuntu
Description:	Ubuntu 18.04.2 LTS
Release:	18.04
Codename:	bionic
xlla@u18-1:~/develop/git$ uname -a
Linux u18-1 5.3.0-28-generic #30~18.04.1-Ubuntu SMP Fri Jan 17 06:14:09 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux

but "bitbake edison-image -c populate_sdk" was success.

@htot
Copy link
Member

htot commented Feb 18, 2020

However when installing the board installation fails as the absolute path to the sdk does not exist (/opt/poky-edison/... wrong version).

can you refer this mode +111 to fixed board installation problem, then try upload a simple test sketch ?

I have do upload but failed, just stuck and timeout.

i never installed the sdk through the sh script. Instead I manually make a link to the files that i already have (no need to have them 2x on the same machine). I do that as described here: https://edison-fw.github.io/meta-intel-edison/3-Building-the-SDK.html

The problem is that the path contains the yocto version name and the Arduino sdk expects another.

@htot
Copy link
Member

htot commented Feb 18, 2020

directly execute "bitbake arduino-toolchain" or execute "make arduino-toolchain" all give out same errors. maybe I should update my build env.

The only error I get is about the missing xz.

but "bitbake edison-image -c populate_sdk" was success.

In my case succeeds to build sh installer, but with warnings about uninstallable packages.

@xlla
Copy link
Author

xlla commented Feb 18, 2020

i never installed the sdk through the sh script. Instead I manually make a link to the files that i already have (no need to have them 2x on the same machine).

We are now try to restore the Arduino sketch compatibilities.
first I found missing folder "/sketch", you manage to restore "clloader" and fixed it.
then you point out we can manual create a tty port to restore missing port, it did in host linux.
then you said that you just download Arduino IDE , and encounter some errors when install it.
you think it was caused by missing /opt/poky-edison... and wrong sdk version.
I encounter it too, after some research, I think it is due to os version upgrade , the parameter format changes, as I mentioned, when I manual change +111 to /111 in ~/.arduino15/packages/Intel/tools/core2-32-poky-linux/1.6.2+1.0/i686/install_script.sh, and manual execute it, everything was ok, even I not have folder "/opt/poky-edison".

(yes, the installed sdk is old, wrong version, and 2x disk space occupy, but we just want to check sketch upload procedure now. It can work well with original firmware edison, so it should upload sketch to our new firmware edison successfully too.)

after that, you can choose "menu->File->Examples->04.Communication->SerialPassthrough", (choose this to avoid GPIO manipulation now)

I am stuck in this point, after compile sketch, timeout when uploading.
I found it invoke "sketchUploader/1.6.2+1.0/clupload/cluploadEdison_linux.sh" to do upload, then invoke "~/.arduino15/packages/Intel/tools/sketchUploader/1.6.2+1.0/x86/bin/lsz".
in lsz's help usage page, it said "Send file(s) with ZMODEM/YMODEM/XMODEM protocol", I don't know if current g_serial port can handle that protocal, since original edison use cdc acm port.

I am now try to compile kernel again to add acm usb gadget support, then configure a acm port and try to upload sketch again.

@xlla
Copy link
Author

xlla commented Feb 18, 2020

after change to acm port, it still stuck in uploading.

sketch2

@htot
Copy link
Member

htot commented Feb 23, 2020

? where is that set? Because you are on warrior, we already have this to change to correct arch.

@xlla
Copy link
Author

xlla commented Feb 24, 2020

where is the create_devtools_package.sh.
not found meta-intel-edison-devtools too.

@htot
Copy link
Member

htot commented Feb 24, 2020

Good question. If you check out original, you will see it never existed (in the version published on https://git.yoctoproject.org/cgit/cgit.cgi/meta-intel-edison/)

@xlla
Copy link
Author

xlla commented Feb 25, 2020

May I still stick to 32-bit version to avoid performance lose.

@xlla
Copy link
Author

xlla commented Feb 25, 2020

Good question. If you check out original, you will see it never existed (in the version published on https://git.yoctoproject.org/cgit/cgit.cgi/meta-intel-edison/)

Alright, I am still try to work out osx-version toolchain, so I had study Makefile carefully to see if I missed something. I thought maybe some clues in that script.

after fixed a lot files, recipe odcctools2-crosssdk and osx-runtime was built.
now stuck on nativesdk-glibc/nativesdk-libc/nativesdk-libc-locale

xlla@u18-1:~/develop/git/out/macosx/build$ bitbake arduino-toolchain
Loading cache: 100% |#########################################################################################################################| Time: 0:00:00
Loaded 3286 entries from dependency cache.
Parsing recipes: 100% |#######################################################################################################################| Time: 0:00:04
Parsing of 2216 .bb files complete (2215 cached, 1 parsed). 3287 targets, 310 skipped, 0 masked, 0 errors.
NOTE: Resolving any missing task queue dependencies
ERROR: Nothing RPROVIDES 'nativesdk-glibc' (but virtual:nativesdk:/home/xlla/develop/git/out/macosx/poky/meta/recipes-core/glibc/glibc-locale_2.29.bb RDEPENDS on or otherwise requires it)
nativesdk-glibc was skipped: PREFERRED_PROVIDER_virtual/nativesdk-libc set to nativesdk-osx-runtime, not nativesdk-glibc
NOTE: Runtime target 'nativesdk-glibc' is unbuildable, removing...
Missing or unbuildable dependency chain was: ['nativesdk-glibc']
NOTE: Runtime target 'nativesdk-bash' is unbuildable, removing...
Missing or unbuildable dependency chain was: ['nativesdk-bash', 'virtual/nativesdk-libc-locale', 'nativesdk-glibc']
NOTE: Runtime target 'nativesdk-bash-completion' is unbuildable, removing...
Missing or unbuildable dependency chain was: ['nativesdk-bash-completion', 'nativesdk-bash', 'virtual/nativesdk-libc-locale', 'nativesdk-glibc']
NOTE: Runtime target 'gdb-cross-canadian-i686' is unbuildable, removing...
Missing or unbuildable dependency chain was: ['gdb-cross-canadian-i686', 'nativesdk-python3', 'nativesdk-util-linux', 'nativesdk-bash-completion', 'nativesdk-bash', 'virtual/nativesdk-libc-locale', 'nativesdk-glibc']
NOTE: Runtime target 'packagegroup-cross-canadian-edison' is unbuildable, removing...
Missing or unbuildable dependency chain was: ['packagegroup-cross-canadian-edison', 'gdb-cross-canadian-i686', 'nativesdk-python3', 'nativesdk-util-linux', 'nativesdk-bash-completion', 'nativesdk-bash', 'virtual/nativesdk-libc-locale', 'nativesdk-glibc']
ERROR: Required build target 'arduino-toolchain' has no buildable providers.
Missing or unbuildable dependency chain was: ['arduino-toolchain', 'packagegroup-cross-canadian-edison', 'gdb-cross-canadian-i686', 'nativesdk-python3', 'nativesdk-util-linux', 'nativesdk-bash-completion', 'nativesdk-bash', 'virtual/nativesdk-libc-locale', 'nativesdk-glibc']

Summary: There were 2 ERROR messages shown, returning a non-zero exit code.

@htot
Copy link
Member

htot commented Feb 25, 2020

Sorry, can't help you with osx. But maybe there is info on the yocto site on how to build on osx? Maybe there is updated darwin stuff?

@xlla
Copy link
Author

xlla commented Feb 28, 2020

If you are looking to fix the arduino-toolchain.bb image

after many days research, I had to give up Mac version toolchain, due to the lack of support and ancient source repo.
for linux version, when I fixed arduino-toolchain.bb, it is built!

@htot
Copy link
Member

htot commented Feb 28, 2020

That's good news. Too bad of the Mac version, I can't help there.

Have you seen this: https://git.yoctoproject.org/cgit/cgit.cgi/meta-darwin/tree/README

@xlla
Copy link
Author

xlla commented Feb 29, 2020

@htot while play with acpi-tables, I found it is still use configfs in acpi-tables-load.
to make life easier, can we just amend those pin number, then everything is work?
for example, recipes-devtools/clloader/files/sketch_reset.service
replace

/opt/edison/sketch_reset -i 207 -o 215 -s /opt/edison/sketch_reset.sh

to

/opt/edison/sketch_reset -i 503 -o 511 -s /opt/edison/sketch_reset.sh

@htot
Copy link
Member

htot commented Feb 29, 2020

Yes, you missed my reply. You need to change one of you U-Boot variable so that you will see "quiet skiptables debugshell=10" n the kernel command line. Really.

And life is already easy :-), I created a test branch sketch_reset_v2 that patches sketch_reset to use libgpiod instead of sysfs. As you can see the code is now greatly simplified.

Using libgpiod really is the way forward. I believe development is now continuing to create a daemon that listens to dbus to rootfs will no longer be needed to manipulate gpios.

The trick is to make mraa use libgpiod as well. The sketch_reset code may serve as an example.

@xlla
Copy link
Author

xlla commented Mar 1, 2020

Yes, you missed my reply.

I see, I have manage to put this arg in to the kernel command line.

fw_setenv bootargs_debug 'quiet skiptables'

then it did work.

root@edison:~# systemctl status acpi-tables-load
● acpi-tables-load.service - ACPI tables load service
   Loaded: loaded (/lib/systemd/system/acpi-tables-load.service; enabled; vendor preset: enabled)
   Active: inactive (dead) since Sat 2020-02-15 17:20:08 UTC; 16s ago
  Process: 551 ExecStart=/usr/bin/acpi-tables-load (code=exited, status=0/SUCCESS)
 Main PID: 551 (code=exited, status=0/SUCCESS)

Feb 15 17:20:07 edison systemd[1]: Started ACPI tables load service.
Feb 15 17:20:08 edison acpi-tables-load[551]: gpioset: at least one GPIO line offset to value mapping must be specified
Feb 15 17:20:08 edison systemd[1]: acpi-tables-load.service: Succeeded.

but empty in journalctl.

root@edison:~# journalctl -b | grep "Command line"
root@edison:~# 

I can confirm it in screen connected to ttyUSB0

Linux kernel version 5.4.0-edison-acpi-standard (oe-user@oe-host) #1 SMP Sat Feb 29 18:08:20 UTC 2020
Building boot_params at 0x00090000
Loading bzImage at address 100000 (11950784 bytes)
Magic signature found
Kernel command line: "root=/dev/mmcblk0p8 rootfstype=ext4 console=ttyS2,115200n8 earlyprintk=ttyS2,115200n8,keep quiet skiptables g_multi.ethernet_config=cdc systemd.unit=multi-user.target hardware_id=00 g_multi.iSerialNumber=8452e52a5b73f5f38c917327f40a577c g_multi.dev_addr=02:00:86:0a:57:7c platform_mrfld_audio.audio_codec=dummy"
Magic signature found

@xlla
Copy link
Author

xlla commented Mar 1, 2020

Using libgpiod really is the way forward

Yes, libdpiod seems easy to monitor gpio pin edge signal than configfs.
I am confused in sketch_reset code logic,
first it set -o line 215 to output mode, then pull up follow pull down, it keep 1 on line 215.
then it set -i line 207 to input mode, wait a falling edge from shield_reset button push, then wait a raising edge for shield_reset button release.
question is, line 215 and 205 is connected, when push down shield_reset button, does it short the line 215?

@xlla
Copy link
Author

xlla commented Mar 1, 2020

I created a test branch sketch_reset_v2 that patches sketch_reset to use libgpiod instead of sysfs.

could you patch this edison_fab_c file to use libgpiod, then arduino sketch will reborn.

I think we can make an intermediate table to translate those configfs line numbers to gpio chip name and line index, then use chardev functions to implement original invoke.

@htot
Copy link
Member

htot commented Mar 1, 2020

then it did work.

Good

but empty in journalctl.

Just check journalctl -b it must be there.

gpioset: at least one GPIO line offset to value mapping must be specified

That doesn't seem right, I haven't seen that before.

Yes, libdpiod seems easy to monitor gpio pin edge signal than configfs.

sysfs

I am confused in sketch_reset code logic,

Yes you are confused, you are looking at the original code, not at the patched code. The patched code will be under (x86_64) out/linux64/build/tmp/work/corei7-64-poky-linux/clloader/1.0-r0/git/galileo-reset/

@xlla
Copy link
Author

xlla commented Mar 2, 2020

As you can see the code is now greatly simplified.

Yes, the code you rewrite is simple and elegant! It works well.

root@edison:~# ps |grep cll
  675 root      2432 S    /opt/edison/clloader --escape --binary --zmodem --disable-timeouts
  680 root      3768 S    grep cll
root@edison:~# /opt/edison/sketch_reset -i SHLD_RESET0 -o SHLD_RESET1 -s /opt/edison/sketch_reset.sh  -v
Sketch Reset button pressed:
Sketch Reset button released: Calling /opt/edison/sketch_reset.sh
^C
root@edison:~# ps |grep cll
  686 root      2432 S    /opt/edison/clloader --escape --binary --zmodem --disable-timeouts
  688 root      3768 S    grep cll

When I try to upgrate kernel to 5.5.0, recipe perf raise errors:

|   CC       /home/xlla/develop/git/out/linux64/build/tmp/work/edison-poky-linux/perf/1.0-r9/perf-1.0/fs/fs.o
| Traceback (most recent call last):
|   File "/usr/lib/python3.6/site.py", line 570, in 
|     main()
|   File "/usr/lib/python3.6/site.py", line 556, in main
|     known_paths = addusersitepackages(known_paths)
|   File "/usr/lib/python3.6/site.py", line 288, in addusersitepackages
|     user_site = getusersitepackages()
|   File "/usr/lib/python3.6/site.py", line 264, in getusersitepackages
|     user_base = getuserbase() # this will also set USER_BASE
|   File "/usr/lib/python3.6/site.py", line 254, in getuserbase
|     USER_BASE = get_config_var('userbase')
|   File "/usr/lib/python3.6/sysconfig.py", line 607, in get_config_var
|     return get_config_vars().get(name)
|   File "/usr/lib/python3.6/sysconfig.py", line 550, in get_config_vars
|     _init_posix(_CONFIG_VARS)
|   File "/usr/lib/python3.6/sysconfig.py", line 421, in _init_posix
|     _temp = __import__(name, globals(), locals(), ['build_time_vars'], 0)
| ModuleNotFoundError: No module named '_sysconfigdata'
| Makefile:185: recipe for target '/home/xlla/develop/git/out/linux64/build/tmp/work/edison-poky-linux/perf/1.0-r9/perf-1.0/bpf_helper_defs.h' failed

@htot
Copy link
Member

htot commented Mar 2, 2020

Yes, @mwallnoefer reported that too. I had that too, I think I fixed that by doing -c cleansstate for linux-yocto and perf, but @mwallnoefer reports it didn't work for him.

I did a clean build make clean && make setup && make image without errors.

In your case your were building i686, but this branch sketch_reset_v2 is x86_64, so you need to do make clean anyway.

@xlla
Copy link
Author

xlla commented Mar 3, 2020

Just check journalctl -b it must be there.

alright, I found it by eyes.

root@edison:~# journalctl -b |grep "Kernel command"
Feb 15 17:20:01 edison kernel: Kernel command line: root=/dev/mmcblk0p8 rootfstype=ext4 console=ttyS2,115200n8 earlyprintk=ttyS2,115200n8,keep quiet skiptables g_multi.ethernet_config=cdc systemd.unit=multi-user.target hardware_id=00 g_multi.iSerialNumber=8452e52a5b73f5f38c917327f40a577c g_multi.dev_addr=02:00:86:0a:57:7c platform_mrfld_audio.audio_codec=dummy
root@edison:~# journalctl -b | grep "Command line"
root@edison:~# 

@xlla
Copy link
Author

xlla commented Mar 3, 2020

Yes, @mwallnoefer reported that too.

I have manual apply patch 3a1a18ba9d28adb5562eabe9ec354f6d93154f5c from git.yoctoproject.org, but still error, I comment out perf and built.

after merged with sketch_reset_v2.0 , I have change it back to i386_defconfig.

@xlla
Copy link
Author

xlla commented Apr 10, 2020

perf was work now.
I wonder how to amend arduino hardware lib for edison.
it does not rely on any external lib, should I introduce libgpiod to it, or mraa lib.

@htot
Copy link
Member

htot commented Apr 11, 2020

I don't know the status of mraa. It has moved over to the eclipse foundation and development seems to have slowed down. The most recent work (in forks) seems to be done by you https://github.com/eclipse/mraa/network.
So, if you have lots of code depending on mraa, you might want to fix mraa. Else, libgpiod and libiio might be the way forward.

@andy-shev andy-shev added the Arduino Arduino library and SDK label May 19, 2020
@limaiem
Copy link

limaiem commented May 26, 2020

Hi all
I have nearly the same problem as xlla

I tried to follow all the exchanges so I can figure out how to solve the issue.

Here few information about my setup

My host is:

  • Ubuntu 18.04.4 LTS
  • Linux io 4.15.0-101-generic # 102-Ubuntu SMP Mon May 11 10:07:26 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux

I followed the instructions here (https://edison-fw.github.io/meta-intel-edison/1.2-Setting-up.html ) and I was able to build images and to load them in the Edison board, to boot it, access by screen using /dev/ttyUSB0 and configure the wifi and so.

  • Poky (Yocto Project Reference Distro) 2.7.3 edison ttyS2
  • Linux edison 5.4.0-edison-acpi-standard # 1 SMP Fri May 22 02:04:59 UTC 2020 i686 i686 i386 GNU/Linux

However I was unable to get my host recognize the port /dev/ttyACM3 to load the arduino codes. Everything worked fine with the original images of Edison board.

I tired to apply the code echo 0x1d6b 0x0104 >/sys/bus/usb-serial/drivers/generic/new_id without any success (https://edison-fw.github.io/meta-intel-edison/4.4-hsu-i2c-spi.html).
I tried with ID 8087:0a9e instead of 0x1d6b:0x0104 but the same issue was here.

Correct me if I am wrong but someone managed to fix this and get it work. What is the branch used to make compile the images (master ?). Any patch applied ?

Thank your for the effort to maintain updated images for Edison.

@htot
Copy link
Member

htot commented May 27, 2020

I am waiting to receive patches from @xlla for this. I believe he was using warrior. But I'll have a look at the ttyUSBxx creation that should work (but note: it will not create ttyACMxx).

What I would like to see most to start with is get the Arduino libraries to compile with the Edison SDK. The IDE and uploading / debugging can be replaced with other tools (KDevelop, Qt Creator).

@htot
Copy link
Member

htot commented May 27, 2020

I just checked the serial over USB as described here and it still works:

ferry@delfion:~$ ls -l /dev/ttyUSB*
crw-rw---- 1 root dialout 188, 0 mei 27 19:55 /dev/ttyUSB0
crw-rw---- 1 root dialout 188, 1 mei 27 19:58 /dev/ttyUSB1
ferry@delfion:~$ sudo -i
root@delfion:~# echo 0x1d6b 0x0104 >/sys/bus/usb-serial/drivers/generic/new_id
(^D)
ferry@delfion:~$ ls -l /dev/ttyUSB*
crw-rw---- 1 root dialout 188, 0 mei 27 19:55 /dev/ttyUSB0
crw-rw---- 1 root dialout 188, 1 mei 27 19:58 /dev/ttyUSB1
crw-rw---- 1 root dialout 188, 2 mei 27 19:59 /dev/ttyUSB2
ferry@delfion:~$ ssh [email protected]
root@edison:~# /sbin/agetty -L 115200 ttyGS0 xterm-256color

Now goto gtkterm on host and connect to /dev/ttyUSB2.

@xlla
Copy link
Author

xlla commented May 29, 2020

Correct me if I am wrong but someone managed to fix this and get it work.

the Arduino Library need be patch to work with chardev.

@xlla
Copy link
Author

xlla commented May 29, 2020

I am waiting to receive patches from @xlla for this

Sorry, I am busy on another project recently, so this task(patch arduino lib) had to postpone.

@limaiem
Copy link

limaiem commented May 29, 2020

Ok thank you @xlla and @htot
even if i have some debugging capabilities i do not think i will succeed to fix this in a efficient way
I will downgrade to the original images waiting for the fix.
thanks.

@htot
Copy link
Member

htot commented May 29, 2020

I never used Arduino libs myself, so it is low priority for me. But we can take patches on incremental improvements, if you any.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Arduino Arduino library and SDK help wanted
Projects
None yet
Development

No branches or pull requests

4 participants