Remove the graphical ui for iMX7D v3

How can I remove the graphical UI after the boot on Linux version 3.0? The one that is basically a terminal with mouse input.

Hi @Ilan_Figueiredo ,

Are you using yocto? If yes, did you use the console-tdx-image as a reference for your image recipe?

Best regards,

Daniel Morais

Yes. I believe it is the xinit. I am unsure in which layer it is being added.

To be more precise, where in which layer is the xserver-nodm.service added to the systemd in the BitBaking process?

Hi @Ilan_Figueiredo ,

Normally there is a variable called IMAGE_FEATURES where there is a IF that checks the DISTRO_FEATURES variable, see below the example for the lxde-image.bb.

IMAGE_FEATURES += " \
    ${@bb.utils.contains('DISTRO_FEATURES', 'wayland', '', \
       bb.utils.contains('DISTRO_FEATURES',     'x11', 'x11', \
                                                       '', d), d)} \
"

Just baked with the changes and it worked.

Perfect. Thanks for your feedback.