lxc-android-config

Differences between revisions 9 and 10
Revision 9 as of 2014-10-01 10:28:36
Size: 724
Editor: lool
Comment:
Revision 10 as of 2014-10-15 21:28:10
Size: 734
Editor: lool
Comment:
Deletions are marked like this. Additions are marked like this.
Line 29: Line 29:
sync adb shell sync

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

Touch/Testing/lxc-android-config (last edited 2016-10-13 13:22:18 by sil2100)