lxc-android-config

Revision 8 as of 2014-09-18 16:50:29

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 # krillin
   9 adb shell mount /system
  10 # mako
  11 adb shell mount /data/system.img /system
  12 
  13 # Put lxc-android-config in it:
  14 adb push lxc-android-config_*_all.deb /system/tmp
  15 
  16 # Install the package:
  17 adb shell chroot /system /usr/bin/env PATH=/bin:/sbin:/usr/bin:/usr/sbin dpkg -i /tmp/lxc-android-config_*_all.deb
  18 
  19 # Unmount and reboot:
  20 adb shell umount /system
  21 adb reboot