Android/PreInstalledAPK: Difference between revisions

From OLPC
Jump to navigation Jump to search
No edit summary
No edit summary
 
(7 intermediate revisions by 2 users not shown)
Line 1: Line 1:
Pre-installed APKs are packaged as a zip file in our build. If you would like to add/delete pre-installed APKs, it can be easily done by recreating zip file.
Pre-installed APKs are packaged as a zip file in our build. If you would like to add/delete pre-installed APKs, it can be easily done by recreating zip file.


1. Download userdata.tar.bz2 file from [http://build.laptop.org/android/2014-05-05/ our build directory]
0. Download 32014o4.zd from the OLPC OS release directory,

1. Download kernel, ramdisk.img, system.img, and userdata.tar.bz2 files from the Android [http://build.laptop.org/android/latest/ build directory],


2. Prepare new userdata.tar.bz2 file
2. Prepare new userdata.tar.bz2 file
Line 10: Line 12:
tar -xvjpf userdata.tar.bz2
tar -xvjpf userdata.tar.bz2


cp XXX0.apk /data/apk/
cp ~/Downloads/XXX0.apk data/apk/
cp XXX1.apk /data/apk/
cp ~/Downloads/XXX1.apk data/apk/
.....
.....


Line 19: Line 21:
3. Download image build script
3. Download image build script


git clone git://dev.laptop.org/users/quozl/mkzd
git clone git://dev.laptop.org/users/ben/android_vendor_olpc_xo4 android-4.3.1-xo4
cd mkzd
cd sugar-combiner
make
make


4. Recreate zd image using your userdata.tar.bz2.
4. Recreate zd image using your userdata.tar.bz2.


* install the {{code|android-tools-fsutils}} package or ensure you have simg2img tools in your /usr/bin/ [http://dev.laptop.org/~ben/simg2img simg2img]
cd mkzd

cp SUGAR_IMG_PATH/32013o4.zd ./
cd sugar-combiner
cp SUGAR_IMG_PATH/32014o4.zd ./
mkdir imgs
mkdir imgs
cp ANDROID_IMG_PATH/kernel imgs/
cp ANDROID_IMG_PATH/kernel imgs/
Line 34: Line 38:
sudo ./mkzd.sh
sudo ./mkzd.sh


5. 32013a4.zd is the image that contains new APKs which you added.
5. 32014a4.zd is the image that contains new APKs which you added.


fs-update u:\32013a4.zd
fs-update u:\32014a4.zd

Latest revision as of 21:30, 13 April 2015

Pre-installed APKs are packaged as a zip file in our build. If you would like to add/delete pre-installed APKs, it can be easily done by recreating zip file.

0. Download 32014o4.zd from the OLPC OS release directory,

1. Download kernel, ramdisk.img, system.img, and userdata.tar.bz2 files from the Android build directory,

2. Prepare new userdata.tar.bz2 file

  mkdir userdata
  cd userdata/
  cp ~/Downloads/userdata.tar.bz2 ./
  tar -xvjpf userdata.tar.bz2
  cp ~/Downloads/XXX0.apk data/apk/
  cp ~/Downloads/XXX1.apk data/apk/
  .....
  rm -f userdata.tar.bz2 
  tar -jcvf userdata.tar.bz2 data

3. Download image build script

  git clone git://dev.laptop.org/users/ben/android_vendor_olpc_xo4 android-4.3.1-xo4
  cd sugar-combiner
  make

4. Recreate zd image using your userdata.tar.bz2.

  • install the android-tools-fsutils package or ensure you have simg2img tools in your /usr/bin/ simg2img
  cd sugar-combiner
  cp SUGAR_IMG_PATH/32014o4.zd ./
  mkdir imgs
  cp ANDROID_IMG_PATH/kernel imgs/
  cp ANDROID_IMG_PATH/ramdisk.img imgs/
  cp ANDROID_IMG_PATH/system.img imgs/
  cp ANDROID_IMG_PATH/userdata.tar.bz2 imgs/
  sudo ./mkzd.sh

5. 32014a4.zd is the image that contains new APKs which you added.

  fs-update u:\32014a4.zd