Request-Could someone PLEASE add this to 12.31

deathsbane

New Member
Joined
Apr 9, 2010
Messages
17
Reaction score
0
I installed this through recovery. It seems to work fine.

Sent from my Droid using DroidForums App
 

MJ5150

Active Member
Joined
Dec 22, 2009
Messages
984
Reaction score
0
Location
Lacey, Washington
Why don't you just open the 12.31 zip file, crack open the apps section, and drop in the Vending.apk from this zip file?

-Mike
 
OP
The Kid Cassidy
Joined
Jun 19, 2010
Messages
292
Reaction score
0
Location
Reading, PA Pronounced (Red-ing)
Why don't you just open the 12.31 zip file, crack open the apps section, and drop in the Vending.apk from this zip file?

-Mike

i tried that and the market did not show up at all on flash (no icon) maybe it was a dud flash i could try again, thought maybe i did something wrong.

you mean replace the original apk with this one right?
 
OP
The Kid Cassidy
Joined
Jun 19, 2010
Messages
292
Reaction score
0
Location
Reading, PA Pronounced (Red-ing)
hey MJ, just wanted to let u know i just tried that again twice (replacing the apk) when i do that and flash when i get to the home screen i am missing the market, music player,and theme downloader . as soon as i replace the apk with the original and flash they are all there!! Weird right!
 
OP
The Kid Cassidy
Joined
Jun 19, 2010
Messages
292
Reaction score
0
Location
Reading, PA Pronounced (Red-ing)

publicanimal

Member
Joined
Jan 15, 2010
Messages
474
Reaction score
0
Location
Austin, TX
I looked at the updater-script file from the META-INF folder of the zip and this zip does more than just push the apk into system.

The easy solution would be to just flash this zip rather than add it to the ROM, but I would guess you could get it to work by adding these lines from the updater-script of this zip to the updater-script of the full ROM zip:

Code:
package_extract_dir("kernel", "/tmp");
set_perm(0, 3004, 02755, "/system/bin/ping");
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");
 
Last edited:
OP
The Kid Cassidy
Joined
Jun 19, 2010
Messages
292
Reaction score
0
Location
Reading, PA Pronounced (Red-ing)
I looked at the updater-script file from the META-INF folder of the zip and this zip does more than just push the apk into system.

The easy solution would be to just flash this zip rather than add it to the ROM, but I would guess you could get it to work by adding these lines from the updater-script of this zip to the updater-script of the full ROM zip:

package_extract_dir("kernel", "/tmp");
set_perm(0, 3004, 02755, "/system/bin/ping");
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");


See all this? this is spanish to me, I have NOOOO idea how to do that yet!
 

jamezelle

Premium Member
Premium Member
Developer
Joined
Apr 11, 2010
Messages
620
Reaction score
0
I looked at the updater-script file from the META-INF folder of the zip and this zip does more than just push the apk into system.

The easy solution would be to just flash this zip rather than add it to the ROM, but I would guess you could get it to work by adding these lines from the updater-script of this zip to the updater-script of the full ROM zip:

package_extract_dir("kernel", "/tmp");
set_perm(0, 3004, 02755, "/system/bin/ping");
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");

not sure where you got that update.zip, its ONLY for flashing kernels, with easy updater by koush, no wonder it doesnt work erase all that shiz and add this
Code:
mount("MTD", "system", "/system");
package_extract_dir("system", "/system");
unmount("/system");

being that whatever it is your flashing is in system of the zip
 
Top