lxc-android-config

Revision 11 as of 2015-09-09 07:51:19

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
  12 adb shell mount /data/system.img /system
  13 
  14 # Put lxc-android-config in it:
  15 adb push lxc-android-config_*.deb /system/tmp
  16 
  17 # Install packages:
  18 adb shell chroot /system /usr/bin/env PATH=/bin:/sbin:/usr/bin:/usr/sbin sh -c 'dpkg -i /tmp/*.deb'
  19 
  20 # Unmount and reboot:
  21 adb shell umount /system
  22 adb shell sync
  23 adb reboot