Deploying Kernel to an image

Hi!! I was looking at antoher topic, (Update image.json file and adding a custom device tree during Yocto build - iMX6ULL BSP 6 - #6 by facundo.n.r) and following these step I can compiler.

But the device tree was isnt modification.

I share my meta-customer, and image.json

meta-customer.tar (40 KB)

    "config_format": "2",
    "autoinstall": false,
    "name": "Toradex Embedded Linux Reference Minimal Image (UPSTREAM)",
    "description": "Minimal image without graphical interface that just boots",
    "version": "6.5.0-devel-20240115114045+build.0",
    "release_date": "2024-01-15",
    "u_boot_env": "u-boot-initial-env",
    "prepare_script": "prepare.sh",
    "wrapup_script": "wrapup.sh",
    "marketing": "marketing.tar",
    "icon": "toradexlinux.png",
    "supported_product_ids": [
        "0036",
        "0040",
        "0044",
        "0045",
        "0046"
    ],
    "mtddevs": [
        {
            "name": "u-boot1",
            "content": {
                "rawfile": {
                    "filename": "u-boot-nand.imx",
                    "size": 1
                }
            }
        },
        {
            "name": "u-boot2",
            "content": {
                "rawfile": {
                    "filename": "u-boot-nand.imx",
                    "size": 1
                }
            }
        },
        {
            "name": "u-boot-env",
            "erase": true,
            "content": {}
        },
        {
            "name": "ubi",
            "ubivolumes": [
                {
                    "name": "kernel",
                    "size_kib": 12288,
                    "type": "static",
                    "content": {
                        "rawfile": {
                            "filename": "zImage",
                            "size": 5
                        }
                    }
                },
                {
                    "name": "dtb",
                    "content": {
                        "rawfiles": [
                            {
                                "filename": "imx6ull-colibri-eval-v3.dtb",
                                "product_ids": "0036"
                            },
                            {
                                "filename": "imx6ull-colibri-wifi-eval-v3.dtb",
                                "product_ids": "0040"
                            },
                            {
                                "filename": "imx6ull-colibri-eval-v3.dtb",
                                "product_ids": "0044"
                            },
                            {
                                "filename": "imx6ull-colibri-wifi-eval-v3.dtb",
                                "product_ids": "0045"
                            },
                            {
                                "filename": "my-devicetree.dtb",
                                "product_ids": "0046"
                            }
                        ]
                    },
                    "size_kib": 128,
                    "type": "static"
                },
                {
                    "name": "m4firmware",
                    "size_kib": 896,
                    "type": "static"
                },
                {
                    "name": "rootfs",
                    "content": {
                        "filesystem_type": "ubifs",
                        "filename": "Reference-Minimal-Image-upstream-colibri-imx6ull.tar.xz",
                        "uncompressed_size": 128.25390625
                    }
                }
            ]
        }
    ]