AttributeError: 'Namespace' object has no attribute 'update'

While trying to upload a new image to my Colibri iMX7D 1GB, V1.1A board, I ran into the following error:

~/tcbworkdir$ torizoncore-builder dto deploy --remote-host 192.168.0.18 --remote-username torizon --remote-password colibri --force --reboot device-trees/overlays/colibri-imx7_interferometer.dts
Downloading image from: https://artifacts.toradex.com/artifactory/torizoncore-oe-prod-frankfurt/dunfell-5.x.y/release/13/colibri-imx7-emmc/torizon-upstream/torizon-core-docker/oedeploy/torizon-core-docker-colibri-imx7-emmc-Tezi_5.6.0+build.13.tar

The download may take some time. Please wait…
Download Complete!

Unpacking Toradex Easy Installer image.
Copying Toradex Easy Installer image.
Unpacking TorizonCore Toradex Easy Installer image.
Importing OSTree revision e18fde565a513f5014c22060e6c60d620d0df10393358fc64e4e94fb3569daec from local repository…
1083 metadata, 12634 content objects imported; 405.9 MB content written
Unpacked OSTree from Toradex Easy Installer image:
Commit checksum: e18fde565a513f5014c22060e6c60d620d0df10393358fc64e4e94fb3569daec
TorizonCore Version: 5.6.0+build.13
An unexpected Exception occured. Please provide the following stack trace to
the Toradex TorizonCore support team:

Traceback (most recent call last):
File “/builder/torizoncore-builder”, line 213, in
mainargs.func(mainargs)
File “/builder/tcbuilder/cli/dto.py”, line 357, in do_dto_deploy
dt_cli.do_dt_checkout(args)
File “/builder/tcbuilder/cli/dt.py”, line 47, in do_dt_checkout
if args.update:
AttributeError: ‘Namespace’ object has no attribute ‘update’

The board currently contains the following image, installed with the Easy Installer:

torizon-core-docker-evaluation-colibri-imx7-emmc-Tezi_5.6.0+build.13.container

Any idea what is going on ?

Dear @ompie,

Hope you’re doing good! From your error, it seems that there may be a problem with the Device Trees and/or the overlays you’re trying to add to your device. I think your command seems fine according to this page: TorizonCore Builder Tool - Commands Manual | Toradex Developer Center.

Could you please share with us the Device Tree overlay file you were trying to use? There may be a problem on that file.

Best regards,
Guilherme

Hi Guilherme,

Here are the contents of the overlay (I also attached the file). For now, I only try to reserve uart2 for the M4 coprocessor:

// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
/*

  • Copyright 2020-2021 Toradex
    */

// Disable UART2 on the Colibri iMX7

/dts-v1/;
/plugin/;

/ {
compatible = “toradex,colibri-imx7d”,
“toradex,colibri-imx7d-emmc”,
“toradex,colibri-imx7s”;
};

&uart2 {
status = “disabled”;
};

I also attached the tcbuild.yaml file. I don’t know whether this could have any influence on the error…
colibri-imx7_interferometer.dts (303 Bytes)
tcbuild.yaml (4.6 KB)

Hi @ompie,

Have you tried creating your TorizonCore image with the configuration file? TorizonCore Builder Tool “build” command | Toradex Developer Center. You can also add your own device trees and overlays with this procedure.

Could you please give it a try?

Best regards,

I just did that.
Running the simple “torizoncore-builder build” command with the following configuration (tcbuild.yaml) did indeed create a new image:

input:
easy-installer:
local: torizon-core-docker-colibri-imx7-emmc-Tezi_5.6.0+build.13.tar

output:
easy-installer:
local: torizon-core-docker-colibri-imx7-emmc-Tezi_5.6.0+build.13.CUSTOM

However, as soon as I use the ‘deploy’ command with my own device tree overly, I get the error:

torizoncore-builder dto deploy --remote-host 192.168.0.18 --remote-username torizon --remote-password colibri --force --reboot device-trees/overlays/colibri-imx7_interferometer.dts

Gives:

Downloading image from: https://artifacts.toradex.com/artifactory/torizoncore-oe-prod-frankfurt/dunfell-5.x.y/release/13/colibri-imx7-emmc/torizon-upstream/torizon-core-docker/oedeploy/torizon-core-docker-colibri-imx7-emmc-Tezi_5.6.0+build.13.tar

The download may take some time. Please wait…
Download Complete!

Unpacking Toradex Easy Installer image.
Copying Toradex Easy Installer image.
Unpacking TorizonCore Toradex Easy Installer image.
Importing OSTree revision e18fde565a513f5014c22060e6c60d620d0df10393358fc64e4e94fb3569daec from local repository…
1083 metadata, 12634 content objects imported; 405.9 MB content written
Unpacked OSTree from Toradex Easy Installer image:
Commit checksum: e18fde565a513f5014c22060e6c60d620d0df10393358fc64e4e94fb3569daec
TorizonCore Version: 5.6.0+build.13
An unexpected Exception occured. Please provide the following stack trace to
the Toradex TorizonCore support team:

Traceback (most recent call last):
File “/builder/torizoncore-builder”, line 213, in
mainargs.func(mainargs)
File “/builder/tcbuilder/cli/dto.py”, line 357, in do_dto_deploy
dt_cli.do_dt_checkout(args)
File “/builder/tcbuilder/cli/dt.py”, line 47, in do_dt_checkout
if args.update:
AttributeError: ‘Namespace’ object has no attribute ‘update’

The overlay file is virtually empty:

/ {
compatible = “toradex,colibri-imx7d”,
“toradex,colibri-imx7d-emmc”,
“toradex,colibri-imx7s”;
};

So the error seems to come from the part that installs the image on the module…
A related question is why the deploy command is downlowding the image from the toradex server while it is locally available as specified in the tcbuild.yaml file shown above.

Just for info:

colibri-imx7-emmc-06596549:~$ cat /etc/os-release
ID=torizon-upstream
NAME=“TorizonCore Upstream”
VERSION=“5.6.0+build.13 (dunfell)”
VERSION_ID=5.6.0-build.13
PRETTY_NAME=“TorizonCore Upstream 5.6.0+build.13 (dunfell)”
DISTRO_CODENAME=“dunfell”
BUILD_ID=“13”
ANSI_COLOR=“1;34”
VARIANT=“Docker”

Hi @ompie,

On the link I sent you there is an example of how to add device trees and overlays directly on the configuration file so you’d not need to use the dto deploy command. Could you please test it to see if you can generate an image with your overlays?

Best regards,

Hi @gclaudino.tx,

Yes I did follow the steps in the link you mentioned. Without using the dto deploy command (i.e. using torizoncore-builder build), I can successfully create an image with the device tree overlay that disables UART2.
After installing it via SD card and EasyInstaller, the system came up and I’m missing /dev/ttymxc1, i.e. UART 2 is gone as was planned, great !
The fact that I do not have the errors and that it works, means that there doesn’t seem to be any error in my tcbuild.yaml and device tree overlay file.

The ‘EasyInstaller way’ will work for me although it is a bit clumsy to startup in recovery mode, download EasyInstaller, select the image and copy it to Flash !

So if you have another method (a variant of the deploy command?) that installs my new image on the module, that would be nice.

Best regards,

Dear @ompie,

I’m glad we could make it work that way. There are a few issues with the torizoncore-builder dto deploy command that we are working on to make sure everything works. The command torizoncore-builder deploy alone usually works and then you can create your image with the build command and follow the procedure here to deploy it to the module: Building External Kernel Modules With Torizon | Toradex Developer Center. There is a dropdown fild called: Deploy The Custom Toradex Easy Installer Image.

A second option would be for you to use the TorizonPlatform to send updates over the air if the device is connected to the internet. This can be really useful if you plan to keep updating the modules once they are in the field.

Please tell me if this helps.

Best regards,

Thanks @gclaudino.tx !

The torizon-builder deploy commands works fine !

Best regards,

Jeroen

1 Like

Great to hear it!

Please come back if you have any other issues.

Best regards,

Hi @gclaudino.tx,

I’m sorry but there is finally an issue. When I said the deploy command works fine, that is only partially true. It does indeed install an image on the module but it is not the correct one !

When copying the new image to SD card and installing it with EasyInstaller, I see in the log that my overlay (colibri-imx7_interferometer) is added:

Executing script at 87000000
Saving Environment to MMC… Writing to MMC(0)… OK
4527 bytes read in 22 ms (200.2 KiB/s)
56570 bytes read in 30 ms (1.8 MiB/s)
143 bytes read in 27 ms (4.9 KiB/s)
Applying Overlay: colibri-imx7_parallel-rgb_overlay.dtbo
686 bytes read in 33 ms (19.5 KiB/s)
Applying Overlay: colibri-imx7_ad7879_overlay.dtbo
451 bytes read in 31 ms (13.7 KiB/s)
Applying Overlay: display-vga_overlay.dtbo
807 bytes read in 33 ms (23.4 KiB/s)
Applying Overlay: colibri-imx7_interferometer.dtbo
446 bytes read in 31 ms (13.7 KiB/s)
8380928 bytes read in 209 ms (38.2 MiB/s)
8052184 bytes read in 204 ms (37.6 MiB/s)
Kernel image @ 0x81000000 [ 0x000000 - 0x7fe200 ]

But when I use the deploy command, the module does NOT show my overlay in the log. It looks like it is using the original tar-ed image that I used to build mine (the devices I disabled in my overlay, uart2 and espi3, are again present under /dev).
This is the command I’m using:

torizoncore-builder deploy --remote-host 192.168.0.18 --remote-username torizon --remote-password colibri --reboot
Pulling OSTree with ref base (checksum e18fde565a513f5014c22060e6c60d620d0df10393358fc64e4e94fb3569daec) from local archive repository…
Starting http server to serve OSTree.
OSTree server listening on “localhost:41091.”
Starting OSTree pull on the device…
Deploying new OSTree on the device…
Deploying successfully finished.
Device reboot initiated…

Any idea what is happening here ?

Thanks in advance

Dear @ompie,

Can you please share with us your tcbuild.yaml file? Also, as a sanity check, before deploying, did you use
$ torizoncore-builder images unpack your_image_output_local before doing the deploy?

Best regards,

Hi @gclaudino.tx ,

This is my tcbuild.yaml file (sorry, indentation does not show up in the formatted version):

input:
easy-installer:
local: images/torizon-core-docker-colibri-imx7-emmc-Tezi_5.6.0+build.13.tar

customization:
device-tree:
include-dirs:
- device-trees/include/
#custom: device-trees/dts-arm32/imx7d-colibri-emmc-aster.dts
overlays:
add:
- device-trees/overlays/colibri-imx7_interferometer.dts

output:
easy-installer:
local: torizon-core-docker-colibri-imx7-emmc-Tezi_5.6.0+build.13.CUSTOM

When I run torizoncore-builder build, it creates a non-compressed file structure under the directory “torizon-core-docker-colibri-imx7-emmc-Tezi_5.6.0+build.13.CUSTOM” (not a tar file).

I did NOT run the unpack command on it. I just tried it:

$ torizoncore-builder images unpack torizon-core-docker-colibri-imx7-emmc-Tezi_5.6.0+build.13.CUSTOM
Storage not empty. Delete current image before continuing? [y/N] y
Copying Toradex Easy Installer image.
Unpacking TorizonCore Toradex Easy Installer image.
Importing OSTree revision 267cead20797c86730990b268d83e5f4e8a06e1c15549a0841282b88b1b10ab1 from local repository…
1083 metadata, 12635 content objects imported; 405.9 MB content written
Unpacked OSTree from Toradex Easy Installer image:
Commit checksum: 267cead20797c86730990b268d83e5f4e8a06e1c15549a0841282b88b1b10ab1
TorizonCore Version: 5.6.0+build.13-tcbuilder.20220701112339

And now it works. when running deploy I see that my overlay appears in the log of the module when it reboots.

So, as I understand it correctly, instead of having to unpack the “input” tar file, I have to unpack the result of the build command.
Just a bit confusing since I have to unpack a non-compressed output result while I don’t need to unpack the compressed / tar-ed input file…

Thanks for your help again !

Dear @ompie,

You’re welcome and I’m glad everything is working again. I’ll check with our team about how can we try to make it clearer on the developer page.

Best regards,