Skip to content
This repository has been archived by the owner on May 27, 2022. It is now read-only.

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Koushik K. Dutta authored and Koushik K. Dutta committed Apr 12, 2010
0 parents commit 891a9bc
Show file tree
Hide file tree
Showing 10 changed files with 3,484 additions and 0 deletions.
Binary file added META-INF/CERT.RSA
Binary file not shown.
1,734 changes: 1,734 additions & 0 deletions META-INF/CERT.SF

Large diffs are not rendered by default.

1,733 changes: 1,733 additions & 0 deletions META-INF/MANIFEST.MF

Large diffs are not rendered by default.

Binary file added META-INF/com/google/android/update-binary
Binary file not shown.
17 changes: 17 additions & 0 deletions META-INF/com/google/android/updater-script
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
ui_print("One size fits all kernel updater: Written by Koush.");
ui_print("Extracting System Files...");
set_progress(1.000000);
mount("MTD", "system", "/system");
package_extract_dir("system", "/system");
unmount("/system");
ui_print("Extracting Kernel files...");
package_extract_dir("kernel", "/tmp");
ui_print("Installing kernel...");
set_perm(0, 0, 0777, "/tmp/dump_image");
set_perm(0, 0, 0777, "/tmp/mkbootimg");
set_perm(0, 0, 0777, "/tmp/unpackbootimg");
run_program("/tmp/dump_image", "boot", "/tmp/boot.img");
run_program("/tmp/unpackbootimg", "/tmp/boot.img", "/tmp/");
run_program("/tmp/mkbootimg", "--kernel", "/tmp/zImage", "--ramdisk", "/tmp/boot.img-ramdisk.img", "--cmdline", "console=ttyS2,115200n8 rw mem=244M@0x80C00000 init=/init ip=off brdrev=P3A_CDMA mtdparts=omap2-nand.0:640k@128k(mbm),384k@1408k(cdt),384k@3328k(lbl),384k@6272k(misc),3584k(boot),4608k(recovery),143744k(system),94848k(cache),268032k(userdata),2m(kpanic)", "--base", "0x10000000", "--output", "/tmp/newboot.img");
write_raw_image("/tmp/newboot.img", "boot");
ui_print("Done!");
Binary file added kernel/dump_image
Binary file not shown.
Binary file added kernel/mkbootimg
Binary file not shown.
Binary file added kernel/unpackbootimg
Binary file not shown.
Binary file added kernel/zImage
Binary file not shown.
Binary file added system/lib/modules/tiwlan_drv.ko
Binary file not shown.

0 comments on commit 891a9bc

Please sign in to comment.