lxc-android-config

Revision 4 as of 2014-05-26 12:56:45

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_*_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_*_all.deb
  15 
  16 # Unmount and reboot:
  17 adb shell umount /mnt
  18 adb reboot