Compare commits

..

No commits in common. "42f757ba3680f08e51223cf0a29c9ab625904e0b" and "62c82f205491a46cdb048e2c99247d7dc8a65d3d" have entirely different histories.

2 changed files with 0 additions and 19 deletions

View File

@ -1,3 +0,0 @@
#!/bin/bash
ls /overlay/upper/usr/lib/opkg/info/*.list | sed -e 's/.*\///' | sed -e 's/\.list//' > list_opkg.list

View File

@ -1,16 +0,0 @@
#!/bin/bash
opkg update
echo "############################################################################"
opkg list-upgradable
echo "############################################################################"
echo
echo "Upgrade ? [Y/n]"
read a
if [[ $a == "Y" ]]; then
echo "Upgrade in progress ..."
opkg list-upgradable | sed -e "s/\s.*//" | while read PKG_NAME; do opkg upgrade "${PKG_NAME}"; done
fi