lxc-android-config

Differences between revisions 4 and 5
Revision 4 as of 2014-05-26 12:56:45
Size: 692
Editor: cyphermox
Comment:
Revision 5 as of 2014-09-18 13:37:44
Size: 789
Editor: lool
Comment:
Deletions are marked like this. Additions are marked like this.
Line 16: Line 16:
# mako version
Line 17: Line 18:
# krillin version
adb shell mount /system
adb shell mount --bind /system /mnt

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

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