lxc-android-config

Revision 10 as of 2014-10-15 21:28:10

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_*.deb /system/tmp
  15 
  16 # Install packages:
  17 adb shell chroot /system /usr/bin/env PATH=/bin:/sbin:/usr/bin:/usr/sbin sh -c 'dpkg -i /tmp/*.deb'
  18 
  19 # Unmount and reboot:
  20 adb shell umount /system
  21 adb shell sync
  22 adb reboot