opkg-jffs2 229 B

1234567891011
  1. #!/bin/sh
  2. JFFS=/jffs/
  3. # list all packages that have been installed additionally
  4. # to the squashfs (useful for upgrades)
  5. for LIST in $JFFS/usr/lib/opkg/info/*.list; do
  6. PKG=${LIST##*/}
  7. PKG=${PKG%.list}
  8. echo $PKG
  9. done