[Q]boot backtrack5 via android failed
hi all!
I've read tutorial how to boot backtrack5 from android phone at here
and I've tried, but I always get failure
this is my screenshot :
my phone is SE XPERIA ARC S.
FYI, this is my bootbt script :
perm=$(id|cut -b 5)
if [ "$perm" != "0" ];then echo "This Script Needs 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 -p $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/loop2 ]; then echo "Loop device exists" else busybox mknod /dev/loop2 b 7 0 fi mount -o loop,noatime -t ext2 $kit/bt5.img $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 "127.0.0.1 localhost bt5" > $mnt/etc/hosts busybox chroot $mnt /bin/bash
echo "Shutting down BackTrack ARM For Xoom" umount $mnt/dev/pts umount $mnt/proc umount $mnt/sys umount $mnt
help me