Anyone had any luck getting the settings for the bt file?
Been looking online for hours trying to get the settings for the Motorola Droid A855 I've had no luck!
Current bt file settings i have is:
Code:perm=$(id|cut -b 5) if [ "$perm" != "0" ];then echo "This script requires root! Type: su"; exit; fi mount -o remount,rw /dev/block/mmcblk0p5 /system export kit=/sdcard/bt5 export bin=/system/bin export mnt=/data/local/mnt mkdir $mnt export PATH=$bin:/usr/bin:/usr/local/bin:/usr/sbin:/bin:/usr/local/sbin:/usr/games:$PATH export TERM=linux export HOME=/root if [ -b /dev/loop7 ]; then echo "Loop device exists" else busybox mknod /dev/loop7 b 7 0 fi #mount -o loop,noatime -t ext2 $kit/bt5.img $mnt losetup /dev/block/loop7 $kit/bt5.img mount -t ext2 /dev/block/loop7 $mnt mount -t devpts devpts $mnt/dev/pts mount -t proc proc $mnt/proc mount -t sysfs sysfs $mnt/sys busybox sysctl -w net.ipv4.ip_forward=1 echo "nameserver 8.8.8.8" > $mnt/etc/resolv.conf echo "nameserver 8.8.4.4" >> $mnt/etc/resolv.conf echo "127.0.0.1 localhost bt5" > $mnt/etc/hosts echo "Ubuntu is configured with SSH and VNC servers that can be accessed from the IP:" ifconfig eth0 echo " " busybox chroot $mnt /bin/bash echo "Shutting down BackTrack ARM" umount $mnt/dev/pts umount $mnt/proc umount $mnt/sys umount $mnt losetup -d /dev/loop7


