Changeset 23955
- Timestamp:
- 09/27/13 21:33:03 (10 years ago)
- Location:
- ipk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
ipk/source.sh4/players_hbbtv/CONTROL/postinst
r23733 r23955 13 13 ln -s "$INSTDIR/usr/local/share/titan/plugins/hbbtv/opera/gstreamer-0.10" /var/usr/lib 14 14 15 model=`cat /etc/model` 16 17 if [ "$model" = "ufs910" ];then 18 if [ -e /var/swapdir/swapfile ];then 19 echo "umount /tmp (60mb)" 20 umount /tmp 21 fi 22 fi 23 15 24 exit 0 -
ipk/source.sh4/players_hbbtv/CONTROL/preinst
r23623 r23955 1 1 #!/bin/sh 2 2 3 model=`cat /etc/model` 4 5 if [ "$model" = "ufs910" ];then 6 if [ -e /var/swapdir/swapfile ];then 7 echo "mount /tmp (60mb)" 8 mount -t tmpfs -o remount,size=60m,mode=1777 tmp /tmp 9 else 10 echo "Error, please use swapdir/swapfile and try again !" 11 exit 1 12 fi 13 fi 14 3 15 exit 0 -
ipk/source/screensaver_hotgirls_1_0/CONTROL/postinst
r23605 r23955 1 1 #!/bin/sh 2 2 3 model=`cat /etc/model` 4 5 if [ "$model" = "ufs910" ];then 6 if [ -e /var/swapdir/swapfile ];then 7 echo "umount /tmp (60mb)" 8 umount /tmp 9 fi 10 fi 11 3 12 exit 0 -
ipk/source/screensaver_hotgirls_1_0/CONTROL/preinst
r23608 r23955 1 1 #!/bin/sh 2 2 3 model=`cat /etc/model` 4 5 if [ "$model" = "ufs910" ];then 6 if [ -e /var/swapdir/swapfile ];then 7 echo "mount /tmp (60mb)" 8 mount -t tmpfs -o remount,size=60m,mode=1777 tmp /tmp 9 else 10 echo "Error, please use swapdir/swapfile and try again !" 11 exit 1 12 fi 13 fi 14 3 15 exit 0
Note: See TracChangeset
for help on using the changeset viewer.