[DEVS ONLY] ics repo

rukin5197

Well-known member
May 26, 2011
1,105
628
0
Visit site
Deleting that line isn't going to do anything bad, it just makes some extra lines in the build.prop. I don't know if they were important though. Let me have a look.
 
  • Like
Reactions: Discovered

rukin5197

Well-known member
May 26, 2011
1,105
628
0
Visit site
Code:
PRODUCT_BUILD_PROP_OVERRIDES += PRODUCT_NAME=COLD.AS.ICE
PRODUCT_NAME := full_thunderc
PRODUCT_DEVICE := thunderc
PRODUCT_BRAND := LGE
PRODUCT_MODEL := LS670
PRODUCT_MANUFACTURER := LGE
If this is all your deleting, then it shouldn't be too bad. I don't see where that could cause problems, but you could just manually add those in later.
 

Invincible Madness

Well-known member
Jul 1, 2011
499
85
0
Visit site
Code:
PRODUCT_BUILD_PROP_OVERRIDES += PRODUCT_NAME=COLD.AS.ICE
PRODUCT_NAME := full_thunderc
PRODUCT_DEVICE := thunderc
PRODUCT_BRAND := LGE
PRODUCT_MODEL := LS670
PRODUCT_MANUFACTURER := LGE
If this is all your deleting, then it shouldn't be too bad. I don't see where that could cause problems, but you could just manually add those in later.

Ok, I'm confused here. Gannon, you are talking about prop overrides in device/lge/thunderc/device.mk.
I think Discovered was talking about prop overrides in vendor/aokp/products/thunderc.mk?

right, what i did was deleted the prop override in the thunderc.mk
 
Last edited:

rukin5197

Well-known member
May 26, 2011
1,105
628
0
Visit site
Ok, I'm confused here. Gannon, you are talking about prop overrides in device/lge/thunderc/device.mk.
I think Discovered was talking about prop overrides in vendor/aokp/thunderc.mk?

I don't believe he's building aokp. But correct me if I'm wrong. What are the prop overrides in vendor/aokp/products/thunderc.mk?
 

Invincible Madness

Well-known member
Jul 1, 2011
499
85
0
Visit site
I don't believe he's building aokp. But correct me if I'm wrong. What are the prop overrides in vendor/aokp/products/thunderc.mk?

Yeah, he isn't but I mentioned the thunderc.mk file and the path to it so I guessed he was talking about similar file in vendor/**something like cm**/products/thunderc.mk

It looks like this.
PRODUCT_BUILD_PROP_OVERRIDES += BUILD_ID=IML74K BUILD_FINGERPRINT=thunderc-user 2.3.4 4.5.91 110625 release-keys PRIVATE_BUILD_DESC="thunderc-user 2.3.4 4.5.91 110625 release-keys"

I created this file looking at your vendor/cna/products/thunderc.mk

This is the whole file, correct me if something is wrong. http://pastebin.com/FrJ5Pu5T
 

rukin5197

Well-known member
May 26, 2011
1,105
628
0
Visit site
Yeah, he isn't but I mentioned the thunderc.mk file and the path to it so I guessed he was talking about similar file in vendor/**something like cm**/products/thunderc.mk

It looks like this.
PRODUCT_BUILD_PROP_OVERRIDES += BUILD_ID=IML74K BUILD_FINGERPRINT=thunderc-user 2.3.4 4.5.91 110625 release-keys PRIVATE_BUILD_DESC="thunderc-user 2.3.4 4.5.91 110625 release-keys"

I created this file looking at your vendor/cna/products/thunderc.mk

I believe I messed up there. The only problem I see is the \

BUILD_FINGERPRINT=thunderc-user 2.3.4 4.5.91 110625 release-keys PRIVATE_BUILD_DESC="thunderc-user 2.3.4 4.5.91 110625 release-keys"

It shouldn't be 2.3.4. I don't know how this worked for me. Try looking at other peoples

Jerry's
Code:
PRODUCT_BUILD_PROP_OVERRIDES += PRODUCT_NAME=thunderc BUILD_UTC_DATE=0 BUILD_ID=GRI40 BUILD_DISPLAY_ID="GRJ90 ($(shell date +%m%d%Y)/$(SUB_MODEL))" BUILD_FINGERPRINT=lge/thunderg/thunderg:2.3.3/GRI40/LG-P500-V20g.19C11F164C:user/release-keys PRIVATE_BUILD_DESC="thunderg-user 2.3.3 GRI40 LG-P500-V20g.19C11F164C release-keys"

Bob's
Code:
PRODUCT_BUILD_PROP_OVERRIDES += PRODUCT_NAME=thunderc BUILD_UTC_DATE=0 BUILD_ID=GWK74 BUILD_DISPLAY_ID="GWK74 $(shell date +%m%d%Y)" BUILD_FINGERPRINT=lge/lge_gelato/VM701:2.3.4/GRJ22/ZV4.19cd75186d:user/release-keys PRIVATE_BUILD_DESC="lge_gelato-user 2.3.4 GRJ22 ZV4.19cd75186d release-keys"
 
  • Like
Reactions: Invincible Madness

rukin5197

Well-known member
May 26, 2011
1,105
628
0
Visit site
Yeah, he isn't but I mentioned the thunderc.mk file and the path to it so I guessed he was talking about similar file in vendor/**something like cm**/products/thunderc.mk

It looks like this.
PRODUCT_BUILD_PROP_OVERRIDES += BUILD_ID=IML74K BUILD_FINGERPRINT=thunderc-user 2.3.4 4.5.91 110625 release-keys PRIVATE_BUILD_DESC="thunderc-user 2.3.4 4.5.91 110625 release-keys"

I created this file looking at your vendor/cna/products/thunderc.mk

This is the whole file, correct me if something is wrong. # Inherit AOSP device configuration for thunderc. $(call inherit-product, devic - Pastebin.com

FINALLY found a problem. okay.
try changing this line: $(call inherit-product, device/lge/thunderc/full_thunderc.mk)
to this: $(call inherit-product, device/lge/thunderc/device.mk)

Don't ask, just do it.
 

rukin5197

Well-known member
May 26, 2011
1,105
628
0
Visit site
Lol okay, I'll just say it because of the other people wondering. (Just in case)
My cna_thunderc.mk file directs that line to device_thunderc.mk
And my device_thunderc.mk looks like this:
$(call inherit-product, build/target/product/full.mk) #$(call inherit-product, - Pastebin.com
Which looks very similar to your device.mk. Almost identical. So it must be trying to grab the wrong thing.

Oh and also, this should fix that error because this line at the bottom:

PRODUCT_BUILD_PROP_OVERRIDES += BUILD_UTC_DATE=0
PRODUCT_NAME := thunderc
PRODUCT_BRAND := LGE
PRODUCT_DEVICE := thunderc
PRODUCT_MODEL := LG-VM670
PRODUCT_MANUFACTURER := LGE

Yay :)

Just make sure the lines in this are the same as yours in thunderc.mk
 

Invincible Madness

Well-known member
Jul 1, 2011
499
85
0
Visit site
Ok, I got the exact same error :(


Code:
build/core/Makefile:36: warning: overriding commands for target `out/target/product/thunderc/system/app/Superuser.apk'
build/core/base_rules.mk:523: warning: ignoring old commands for target `out/target/product/thunderc/system/app/Superuser.apk'
build/core/Makefile:36: warning: overriding commands for target `out/target/product/thunderc/root/ueventd.rc'
system/core/rootdir/Android.mk:49: warning: ignoring old commands for target `out/target/product/thunderc/root/ueventd.rc'
build/core/Makefile:36: warning: overriding commands for target `out/target/product/thunderc/root/init.rc'
system/core/rootdir/Android.mk:42: warning: ignoring old commands for target `out/target/product/thunderc/root/init.rc'
build/core/Makefile:36: warning: overriding commands for target `out/target/product/thunderc/system/etc/hosts'
system/core/rootdir/Android.mk:31: warning: ignoring old commands for target `out/target/product/thunderc/system/etc/hosts'
build/core/Makefile:36: warning: overriding commands for target `out/target/product/thunderc/system/bin/dhcpcd'
build/core/base_rules.mk:523: warning: ignoring old commands for target `out/target/product/thunderc/system/bin/dhcpcd'
build/core/Makefile:36: warning: overriding commands for target `out/target/product/thunderc/system/lib/egl/libGLES_android.so'
build/core/base_rules.mk:523: warning: ignoring old commands for target `out/target/product/thunderc/system/lib/egl/libGLES_android.so'
build/core/Makefile:36: warning: overriding commands for target `out/target/product/thunderc/system/bin/e2fsck'
build/core/base_rules.mk:523: warning: ignoring old commands for target `out/target/product/thunderc/system/bin/e2fsck'
build/core/Makefile:36: warning: overriding commands for target `out/target/product/thunderc/system/lib/libril.so'
build/core/base_rules.mk:523: warning: ignoring old commands for target `out/target/product/thunderc/system/lib/libril.so'
build/core/Makefile:36: warning: overriding commands for target `out/target/product/thunderc/system/bin/rild'
build/core/base_rules.mk:523: warning: ignoring old commands for target `out/target/product/thunderc/system/bin/rild'
build/core/Makefile:66: warning: overriding commands for target `out/target/product/thunderc/root/default.prop'
build/core/Makefile:36: warning: ignoring old commands for target `out/target/product/thunderc/root/default.prop'
No private recovery resources for TARGET_DEVICE thunderc
target SharedLib: libc (out/target/product/thunderc/obj/SHARED_LIBRARIES/libc_intermediates/LINKED/libc.so)
Install: out/target/product/thunderc/system/lib/libdl.so
Install: out/host/linux-x86/bin/minigzip
Target buildinfo: out/target/product/thunderc/system/build.prop
target StaticLib: libedify (out/target/product/thunderc/obj/STATIC_LIBRARIES/libedify_intermediates/libedify.a)
/bin/bash: 2.3.4: command not found
make: *** [out/target/product/thunderc/system/build.prop] Error 127
make: *** Deleting file `out/target/product/thunderc/system/build.prop'
make: *** Waiting for unfinished jobs....
 

Invincible Madness

Well-known member
Jul 1, 2011
499
85
0
Visit site
That seems to be your error now. Remember how I was saying that it was 2.3.4 and it shouldn't have been? try changing it around.

You are right Gannon. I changed it to 2.3.3 and the error now is 2.3.3. To be honest I don't know how exactly this line is supposed to be and where it gets those different values from. I think getting that line right will solve this error.
 

Invincible Madness

Well-known member
Jul 1, 2011
499
85
0
Visit site
Ok, these lines are running for a while now. I don;t remember seeing them before and build is taking longer than usual.


Code:
Putting child 0x11dc6d20 (out/host/linux-x86/obj/SHARED_LIBRARIES/libsqlite_intermediates/sqlite3.o) PID 6580 on the chain.
Live child 0x11dc6d20 (out/host/linux-x86/obj/SHARED_LIBRARIES/libsqlite_intermediates/sqlite3.o) PID 6580 
host C: libsqlite <= external/sqlite/dist/sqlite3.c
Reaping winning child 0x11dc6d20 PID 6580 
Live child 0x11dc6d20 (out/host/linux-x86/obj/SHARED_LIBRARIES/libsqlite_intermediates/sqlite3.o) PID 6581

Whats live child and winning child ? :-!
 

rukin5197

Well-known member
May 26, 2011
1,105
628
0
Visit site
Ok, these lines are running for a while now. I don;t remember seeing them before and build is taking longer than usual.


Code:
Putting child 0x11dc6d20 (out/host/linux-x86/obj/SHARED_LIBRARIES/libsqlite_intermediates/sqlite3.o) PID 6580 on the chain.
Live child 0x11dc6d20 (out/host/linux-x86/obj/SHARED_LIBRARIES/libsqlite_intermediates/sqlite3.o) PID 6580 
host C: libsqlite <= external/sqlite/dist/sqlite3.c
Reaping winning child 0x11dc6d20 PID 6580 
Live child 0x11dc6d20 (out/host/linux-x86/obj/SHARED_LIBRARIES/libsqlite_intermediates/sqlite3.o) PID 6581

Whats live child and winning child ? :-!

Putting child ... on the chain?
 

Invincible Madness

Well-known member
Jul 1, 2011
499
85
0
Visit site
Guys, new error here Putting child 0x206d5a40 (out/host/linux-x86/obj/lib/libext2_profile.so) PID 387 - Pastebin.com

Code:
Removing child 0x206d2d60 PID 3885 from chain.
    Successfully remade target file `out/host/linux-x86/bin/e2fsck'.
    Pruning file `out/host/linux-x86/bin/make_ext4fs'.
   Finished prerequisites of target file `out/target/product/thunderc/aokp_thunderc-ota-eng.anathma.zip'.
  Giving up on target file `out/target/product/thunderc/aokp_thunderc-ota-eng.anathma.zip'.
 Finished prerequisites of target file `otapackage'.
Giving up on target file `otapackage'.
make: Target `otapackage' not remade because of errors.
 

Trending Posts

Forum statistics

Threads
943,085
Messages
6,917,192
Members
3,158,815
Latest member
kemberley1