This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

AM3359: Command Line

Part Number: AM3359

Hi Ti Team,

I'm working on AM3359ICE using Linux SDK.

I need to find what are the packages installed in my AM3359ICE Board linux.

I have tried apt list --installed, I got command not found

please tell me what is the command line to check installed packages on my  board's root.

Thanks in advance,

Regards,

Priyadharshini M.

  • please tell me what is the command line to check installed packages on my  board's root.

    Our Processor SDK Linux uses the 'opkg' package manager (see https://openwrt.org/docs/guide-user/additional-software/opkg) by default, which is distinctly different from the 'apt' package manager used on typical Debian-type distributions. So the proper command to list installed packages would be this:

    root@am62xx-evm:~# opkg list-installed
    acl - 2.2.53-r0.0
    adwaita-icon-theme-symbolic - 3.34.3-r0.0
    alsa-conf - 1.2.1.2-r0.0
    alsa-server - 1.2.1.2-r0.0
    alsa-state - 0.2.0-r5.arago0.0
    alsa-states - 0.2.0-r5.arago0.0
    alsa-topology-conf - 1.2.1-r0.0
    alsa-ucm-conf - 1.2.1.2-r0.0
    alsa-utils - 1.2.1-r0.0
    alsa-utils-aconnect - 1.2.1-r0.0
    <...snip...>

    Regards, Andreas