lxc-android-config

Revision 2 as of 2014-05-26 12:55:05

Clear message

Testing new versions of lxc-android-config

  • download the lxc-android-config package ==
  • install the package:

   1 #clean flash of the latest image on mako
   2 ubuntu-device-flash --channel=devel-proposed --bootstrap
   3 
   4 # reboot into recovery
   5 adb reboot recovery
   6 
   7 # Remount the system image someplace it can be modified:
   8 adb shell mount -o loop /data/system.img /mnt
   9 
  10 # Put lxc-android-config in it:
  11 adb push lxc-android-config_0.161_all.deb /mnt/tmp
  12 
  13 # Install the package:
  14 adb shell chroot /mnt /usr/bin/env PATH=/bin:/sbin:/usr/bin:/usr/sbin dpkg -i /tmp/lxc-android-config_0.161_all.deb
  15 
  16 # Unmount and reboot:
  17 adb shell umount /mnt
  18 adb reboot