Kernel Problem - Xperia Play Q&A, Help & Troubleshooting

Hello,
I'm trying to compile a 3.4 kernel for Xperia Play(zeus) and i have a problem with the compiling, i managed to compile with clean sources,but they have a bug (not working touchscreen) . I tried to mix some of the code from DoomLord's 3.4 kernel ( not finished yet, but in git it says that the touchscreen is fixed) with mike's sources (my base sources ).
Here is what i get in terminal:
Code:
scripts/kconfig/conf --silentoldconfig Kconfig
GEN /home/filip/android/system/out/target/product/zeus/obj/KERNEL_OBJ/Makefile
CHK include/linux/version.h
Using /home/filip/android/system/kernel/semc/msm7x30 as source for kernel
CHK include/generated/utsrelease.h
make[3]: `include/generated/mach-types.h' is up to date.
CALL /home/filip/android/system/kernel/semc/msm7x30/scripts/checksyscalls.sh
CHK include/generated/compile.h
GZIP kernel/config_data.gz
CHK kernel/config_data.h
UPD kernel/config_data.h
CC kernel/configs.o
CC drivers/input/touchscreen/cy8ctma300_touch.o
LD kernel/built-in.o
/home/filip/android/system/kernel/semc/msm7x30/drivers/input/touchscreen/cy8ctma300_touch.c:185:28: error: expected ')' before 'int'
/home/filip/android/system/kernel/semc/msm7x30/drivers/input/touchscreen/cy8ctma300_touch.c:186:32: error: expected ')' before string constant
/home/filip/android/system/kernel/semc/msm7x30/drivers/input/touchscreen/cy8ctma300_touch.c: In function 'perform_reset':
/home/filip/android/system/kernel/semc/msm7x30/drivers/input/touchscreen/cy8ctma300_touch.c:488:2: error: implicit declaration of function 'gpio_set_value' [-Werror=implicit-function-declaration]
/home/filip/android/system/kernel/semc/msm7x30/drivers/input/touchscreen/cy8ctma300_touch.c:492:2: error: implicit declaration of function 'gpio_get_value' [-Werror=implicit-function-declaration]
/home/filip/android/system/kernel/semc/msm7x30/drivers/input/touchscreen/cy8ctma300_touch.c: At top level:
/home/filip/android/system/kernel/semc/msm7x30/drivers/input/touchscreen/cy8ctma300_touch.c:1104:13: error: 'THIS_MODULE' undeclared here (not in a function)
/home/filip/android/system/kernel/semc/msm7x30/drivers/input/touchscreen/cy8ctma300_touch.c:1106:2: error: unknown field 'ioctl' specified in initializer
/home/filip/android/system/kernel/semc/msm7x30/drivers/input/touchscreen/cy8ctma300_touch.c:1106:2: warning: initialization from incompatible pointer type [enabled by default]
error, forbidden warning: cy8ctma300_touch.c:1106
make[5]: *** [drivers/input/touchscreen/cy8ctma300_touch.o] Error 1
make[4]: *** [drivers/input/touchscreen] Error 2
make[3]: *** [drivers/input] Error 2
make[2]: *** [drivers] Error 2
make[2]: *** Waiting for unfinished jobs....
make[1]: *** [sub-make] Error 2
make[1]: Leaving directory `/home/filip/android/system/kernel/semc/msm7x30'
make: *** [TARGET_KERNEL_BINARIES] Error 2
Please help me.
Or if you want , you could try to make a kernel with working touchscreen for zeus and i will test it,here is the link for the sources : https://github.com/LegacyXperia also from the sources i tried to mix : https://github.com/DooMLoRD/CAF_msm7x30-3.4.x;

I was planning to ask Devs here to help us for Play Touchscreen problem.. until I saw your post trying to find a fix for touchscreen problems.. don't worry. we might get help soon.

Actully I managed to compile but it didn't work. I hope someone will help us get the touchscreen driver working.

ChunkFlip said:
Actully I managed to compile but it didn't work. I hope someone will help us get the touchscreen driver working.
Click to expand...
Click to collapse
hi.. can you please guide me in building kernel.. I am a little confused.. I have installed Ubuntu for the same reason.. I want to help and experiment so that maybe we could find a way out. any guide you could refer me to.. I am a little noobish (my first attempt) so if you could please help me to build a cm 10.1 kernel.. (I also want to take half from doom lords sources and half from mikes .. but how.. am clueless after reading almost 10 guides.

well changes that doom did on touchscreen files wont solve the touchscreen issue
doomlord updated the driver in his source
nick did this in his first zimage but touchscreen was not working

ChunkFlip said:
Actully I managed to compile but it didn't work. I hope someone will help us get the touchscreen driver working.
Click to expand...
Click to collapse
pedyvirus said:
well changes that doom did on touchscreen files wont solve the touchscreen issue
doomlord updated the driver in his source
nick did this in his first zimage but touchscreen was not working
Click to expand...
Click to collapse
hi.. I found something really useful here.. can you try this..
https://groups.google.com/forum/#!topic/android-porting/Rmvqi8fPYCg
and maybe this http://forum.xda-developers.com/showthread.php?t=1328515
and this too.. we all should go through these links.. gives us a little extra knowledge. http://stackoverflow.com/questions/7425303/replacing-touchscreen-driver-in-android-kernel

this thread was very useful
http://forum.xda-developers.com/showthread.php?t=1328515

pedyvirus said:
this thread was very useful
http://forum.xda-developers.com/showthread.php?t=1328515
Click to expand...
Click to collapse
nick corrected your error in the main thread.. did you correct it and compile ?? waiting for your or nick's test kernel.. plz make sure to make a boot.img .. as I don't even know how to convert zlimage to boot.img.. if you are compiling that is..
FYI : its night time again at my place.. looks like its time to start researching again for new solutions.. haha.. I do this everynight.

i tryed to compile again but gived me that ***** error again
i even tried compiling with another toolchain instaed of doomlord ones but gived me another error
---------- Post added at 08:44 AM ---------- Previous post was at 08:31 AM ----------
i was checking the file that you attached (doomlord one)
i did a diffcheck and i can say it wont solve the problem
differences were only related to some lines that doomlord one were all outdated
in the header 3.4 kernel needed things weren't included
we still had old int err = 0; instead of long err = 0; and ....
and your error was probably caused by one of that things
---------- Post added at 08:53 AM ---------- Previous post was at 08:44 AM ----------
please try what is explained in this thread
im 50% sure it will work
http://forum.xda-developers.com/showthread.php?t=1328515

pedyvirus said:
i tryed to compile again but gived me that ***** error again
i even tried compiling with another toolchain instaed of doomlord ones but gived me another error
---------- Post added at 08:44 AM ---------- Previous post was at 08:31 AM ----------
i was checking the file that you attached (doomlord one)
i did a diffcheck and i can say it wont solve the problem
differences were only related to some lines that doomlord one were all outdated
in the header 3.4 kernel needed things weren't included
we still had old int err = 0; instead of long err = 0; and ....
and your error was probably caused by one of that things
---------- Post added at 08:53 AM ---------- Previous post was at 08:44 AM ----------
please try what is explained in this thread
im 50% sure it will work
http://forum.xda-developers.com/showthread.php?t=1328515
Click to expand...
Click to collapse
can you please make a Noob Guide about compiling a 3.x Kernel for Xperia Play. so that noobs like me can experiment themselves.. and more chances of getting it working.. every person tries something different.. maybe we end up their.

ok , i reinstalled ubuntu (had a problem with the hdd ) , now i'm syncing the repo again to try the tj_style fix, thanks for the tip pedyvirus.
@saqibkhan
How i did,I don't know if this is the right way but.. :
1.Install Windows 8(if not already installed) but leave some free space on the hdd , don't partition it completly.
2.Install Ubuntu 13.10 with a partition ext 4 and mount point "/" and a swap partition . ps: install it on the ext 4 partition.
3.Follow this guide : http://wiki.cyanogenmod.org/w/Build_for_zeus until "Initialize the CyanogenMod source repository"
4.Follow this guide but change smultron with zeus in the code lines http://forum.xda-developers.com/showthread.php?t=2164696
EDIT 1pedyvirus can you provide me the files that you have changed, but doesn't compile , i want to try it too . I saw the tj_style post but i couldn't find these lines in our code maybe i'm too noob or too blind.

--- delete post please

ChunkFlip said:
ok , i reinstalled ubuntu (had a problem with the hdd ) , now i'm syncing the repo again to try the tj_style fix, thanks for the tip pedyvirus.
@saqibkhan
How i did,I don't know if this is the right way but.. :
1.Install Windows 8(if not already installed) but leave some free space on the hdd , don't partition it completly.
2.Install Ubuntu 13.10 with a partition ext 4 and mount point "/" and a swap partition . ps: install it on the ext 4 partition.
3.Follow this guide : http://wiki.cyanogenmod.org/w/Build_for_zeus until "Initialize the CyanogenMod source repository"
4.Follow this guide but change smultron with zeus in the code lines http://forum.xda-developers.com/showthread.php?t=2164696
EDIT 1pedyvirus can you provide me the files that you have changed, but doesn't compile , i want to try it too . I saw the tj_style post but i couldn't find these lines in our code maybe i'm too noob or too blind.
Click to expand...
Click to collapse
for 1. i always had windows 8. on a 350gb HDD
for 2. i installed with Partition Boot 250mb.. Root partition 30gb.. Home partition 60GB .. Swap Partition 8GB.. Bootloader installed in Boot Partition.. this way.. windows loads always.. unless i select Ubuntu before 10 SEconds.. (i get the option for both)
for 3. i will start following and let u knw of any help needed. (until means not including that step right.. or until completion of Initialise the CYMOD source repo)
for 4. same like 3.

our driver is not completely the same
im too noob about this too

saqibkhan said:
for 1. i always had windows 8. on a 350gb HDD
for 2. i installed with Partition Boot 250mb.. Root partition 30gb.. Home partition 60GB .. Swap Partition 8GB.. Bootloader installed in Boot Partition.. this way.. windows loads always.. unless i select Ubuntu before 10 SEconds.. (i get the option for both)
for 3. i will start following and let u knw of any help needed. (until means not including that step right.. or until completion of Initialise the CYMOD source repo)
for 4. same like 3.
Click to expand...
Click to collapse
Not including. It says that in mike's guide too

ChunkFlip said:
Not including. It says that in mike's guide too
Click to expand...
Click to collapse
if i want to build only the kernel.. do i have to follow all the steps.. cuz the steps are not clearly mentioned.. like what to follow only for kernel.. i followed till repo sync.. but the next three steps take me towards building the ROM.. but i want to build only the kernel. ?? i am talking about Mike's Guide.

saqibkhan said:
if i want to build only the kernel.. do i have to follow all the steps.. cuz the steps are not clearly mentioned.. like what to follow only for kernel.. i followed till repo sync.. but the next three steps take me towards building the ROM.. but i want to build only the kernel. ?? i am talking about Mike's Guide.
Click to expand...
Click to collapse
See down the post , he explained already.

Related

[WIP] [ROM] SSROM "Simon'sStock"

SS ROM:
SS stands for SimonsStock, for the HTC Wildfire S (Virgin Mobile USA ONLY)
I spent a long time compiling and testing this ROM, and am still working on modifying it, as I have school on weekdays and a big test in math coming up, so my developing time is limited. Ive de-odexed the entire ROM, made sure the carrier key logger was NOT present, added WiFi tethering (native htc, check the quick settings tab in status bar), added root, removed most of the crapware, however you can still activate your phone on my ROM, zip-aligned, ADHOC Networks are supported, and buisybox. NOTE: UOT's theme kitchen will work for this device anything you'll need to upload to them is in this zip as well. Eventually, I will get around to making a new boot.img but as of now, this one is stock. If you'd like to make one with apps2sd support and receive credit, PM me. Also, to anyone brought here looking for CM7, I am currently porting it, but have run into problems with the boot.img and kernel, its getting there, slowly. When I have a release of it I'll post, so dont ask for updates.
WARNING:
Any bricks are not mine, XDA's or anyone besides yourself's fault. The procedures used to flash my ROM may cause semi-bricking, However, it is always reversible.
So heres the flash-able zip:
you know the drill on flashing.. Dont forget to wipe everything
https://docs.google.com/open?id=0BwZZjRHl9NIJMGI1MTI3ZTEtYTk4YS00NzAwLWE3YjktMWRhZmRkODIzNTA1
ADDED:
WiFi tethering (check the quick settings tab on notification bar)
DeOdexed the Rom, so it is now themeable.
zipaligned for speed
fixed some small problems with memory (got you guys a little more)
fixed the link2sd problem
Added adhoc network support
MADE THE FIRST ROM (with these modifications)
Nice another ROM for the vm wildfire s
Sent from my HTC_A510c using xda premium
Will the CM7 be universal or just for the VM 510c?
d33ps1x said:
Will the CM7 be universal or just for the VM 510c?
Click to expand...
Click to collapse
CM7 should be universal, CDMA phones share the same hardware, so i plan on having a separate zip for the VM files that i want to include. This is stock VM firmware, the only reason that this is only for VM. Also, when CM9 Comes out, im only updating to make cm7 stable and as bugless as i can then permenately moving over to the CM9 source.
Update: sorry for the long wait, dialup is a killer on uploads
EDIT:
Also be looking for my next build, im going to include DSP and look through and see if i can unlock any more goodies. Ill also be posting some tutorials that allow for development on the phone, here. Not this thread, but a new one.
Great news m8,keep it up
I was wondering if you are going to add sense 3.0 lockscreen ?
Sent from my HTC_A510c using xda premium
New build is up
https://docs.google.com/open?id=0BwZZjRHl9NIJMGI1MTI3ZTEtYTk4YS00NzAwLWE3YjktMWRhZmRkODIzNTA1
cpie20 said:
I was wondering if you are going to add sense 3.0 lockscreen ?
Sent from my HTC_A510c using xda premium
Click to expand...
Click to collapse
Thanks for the reccomendation I think i will try to add it in there, but i am working on another rom at present, this is only a holdover until then to make our phones useable
No problem is that rom for the wildfire s??
Sent from my HTC_A510c using xda premium
Yes that is the Rom for the VMUS wildfire s. Next im going to try to add and remove some things. Im also working on the kernel, so if anyone knows how, and would like to teach me how to develop kenels, PM or email me
Oh I know someone that knows how to compile kernels but he is in another forum
Sent from my HTC_A510c using xda premium
What forum, send me to him lol. I have the thing booting, but i need the kernel for stability im a member of all forums, i can sent him a PM
His name is tiny from the htc incredible forums
Sent from my HTC_A510c using xda premium
Im going to look him up. I took a crash (google) course on kernels today. So i keep getting this error i dont know how to fix lol.. Fun fun.. Anyways, if anyone knows how to fix it it is
[email protected]:~/kernelsense$ make ARCH=arm CROSS_COMPILE=$CCOMPILER -j`grep 'processor' /proc/cpuinfo | wc -l`
scripts/kconfig/conf -s arch/arm/Kconfig
CHK include/linux/version.h
CHK include/generated/utsrelease.h
make[1]: `include/generated/mach-types.h' is up to date.
CC kernel/bounds.s
cc1: error: unrecognized command line option ‘-mlittle-endian’
cc1: error: unrecognized command line option ‘-mapcs’
cc1: error: unrecognized command line option ‘-mno-sched-prolog’
cc1: error: unrecognized command line option ‘-mno-thumb-interwork’
kernel/bounds.c:1:0: error: unknown ABI (aapcs-linux) for -mabi= switch
kernel/bounds.c:1:0: error: bad value (armv5t) for -march= switch
kernel/bounds.c:1:0: error: bad value (strongarm) for -mtune= switch
make[1]: *** [kernel/bounds.s] Error 1
make: *** [prepare0] Error 2
EDIT: I couldnt find him on there
its me ttying to make a stock kernel, with added supports.
I know nothing of kernels well the full avatar name is tiny4579 or something like that
Sent from my HTC_A510c using xda premium
lol still couldnt find him. Im going to look around XDA some
Got Cm7 to build, and a dev built me a kernel. Touchscreen and network dont work and some graphics issues but its getting there everyone
Nice to see progress going along
Ok, this is the real deal. An alpha release. There are lots of problems, but i need testers while im at school. This should work on any carrier. Please check the listing for my rom post
ssrom
This Rom is sick. Use this as my stock. Works well with Jikantaru oc kernel. WiFi is working. Thanks

xperia s bcm4330 monitor mod with aircrack-ng

hi they made bcm4330 with monitor mode and aircrack for arm ...... the problem i don't know how to compile .ko driver ...........
http://bcmon.blogspot.com/2012/09/working-monitor-mode-on-nexus-one.html
can anyone compile it for us .. plz and make tuto how it works ...... thanx
links : http://www.youtube.com/watch?v=h7FUrW4eCN0
http://forum.xda-developers.com/showthread.php?t=1892535&highlight=xperia
http://bcmon.googlecode.com/svn/trunk/
R: xperia s bcm4330 monitor mod with aircrack-ng
Cd in the bcm4330 folder, go in dhd/linux/
open terminal here and put thus command:
make CROSS_COMPILE= <your toolchain path> LINUXDIR=<the kernel Path> LINUXVER=<the linux version>
Note that the drivers above, depends on kernel.... if you use a module for stock kernel, with a non stock(optimized kernel) kernel they won't work
Sent from my LT26i using xda app-developers app
i got unused variable warning how to avoid it or to skip it .... i can compile bcm4330.ko from the original but ithink there is proble from the modified source ..so help me plz i'm new ....
nanoteam said:
i got unused variable warning how to avoid it or to skip it .... i can compile bcm4330.ko from the original but ithink there is proble from the modified source ..so help me plz i'm new ....
Click to expand...
Click to collapse
what cross compiler are you using ? ..... if upper than 4.6.0 you can use #Pragma diagnostic error "-Wunused"
it's a dirty way , but it's very fast to do
i compiled a dhd.ko module but it does not load i tried with local_version but it's the same ... error exe format .......
hello guys
does this work on xperia s or not?
if yes what rom

[Tester Needed] Need Beta testers For MiniCM10 ROM

Hello Gio users, I have compiled MiniCM10 for Galaxy Gio . I don't own this devices. So i need Beta testers. Any experienced android user can test. Tester must be able to take logcat so that i can fix bugs!
To haters: If you are not interested, Stay away from this thread!
P.S. You can check my profile to see all my work!
RishabhAd said:
Hello Gio users, I have compiled MiniCM10 for Galaxy Gio . I don't own this devices. So i need Beta testers. Any experienced android user can test. Tester must be able to take logcat so that i can fix bugs!
To haters: If you are not interested, Stay away from this thread!
P.S. You can check my profile to see all my work!
Click to expand...
Click to collapse
yep i want to test it but why don't you make MiniCM10.1? CM10.1 is more faster and beautiful than cm10
MiniCM10 is after market ROM like ParanoidAndroid, AOKP, Cyanmobile, etc. It is totally different ROM Created by NobodyAtAll (RD), Dark_dog (RT) & Team. It has more features then CM10 Plus It is specially Built For LDPI Devices. MiniCM10 is specially made for msm7x27 semc devices (Low Legacy Devices)
you can PM me its link so i can test that rom and see what bugs i found.
---
I can't get it to download him.my internet connection is terribly slow.it downloads at just 15kb/sec
EvilKing009 said:
you can PM me its link so i can test that rom and see what bugs i found.
Click to expand...
Click to collapse
yea u can count on me too to test it! One question i know how to do logcat through adb but i dont know how to save it?
I can test too
Can test
Sent from my GT-S5660 using xda app-developers app
I gotta installation failed like this
-- Installing: /sdcard/cm_gio-ota-eng-rish.zip
Finding update
opening update
installing update
set_perm: some changes failed
E: error in /sdcard/cm_gio-ota-eng-rish.zip
(status 7)
Installation aborted
Click to expand...
Click to collapse
Lets see what I can do my best.
EDIT #1:
Tried to replace its some meta-inf files but problem still persist. >_<
EDIT # 2:
Now need to investigate its some files that makes device not to install the rom.
EDIT # 3:
Tried to remove some useless "Set_perm" lines but it still says that error
EDIT # 4:
Seams to be "audio_effects.conf" permission is wrong in /vendor/etc instead of /system/etc.lets try to flash again.
EvilKing009 said:
I gotta installation failed like this
Lets see what I can do my best.
EDIT #1:
Tried to replace its some meta-inf files but problem still persist. >_<
EDIT # 2:
Now need to investigate its some files that makes device not to install the rom.
Click to expand...
Click to collapse
Ok, Can you provide me installation log? Located in clockworkmod folder in sdcard?
RishabhAd said:
Ok, Can you provide me installation log? Located in clockworkmod folder in sdcard?
Click to expand...
Click to collapse
yeah.please wait :silly:
here's ya link
http://pastebin.com/UqD45sFZ
let's try my best again
EDIT # 1:
Installation succeed but the rom doesn't boot.
my Gio is available for testing...
how to be a tester?
hi i want to be a tester also but how? ho to do it with logcat? and how it does work?
wow nice , i am searching new ROM, i'll be glad to test it:laugh:

[DEV][GITHUB][PORT] Sense 5 port from the HTC One to the Wildfire S

So, here it is. The development thread for Sense 5.
The Github repo is here : https://github.com/izi501/htc_sense_5_marvel.
As in the development thread for Sense 4, this is only for developers. No ETA will be tolerated. Every help is accepted from evreybody Feel free to fork the repo and to make commits
PROGRESS SO FAR
The ROM flashes.
I ported using GalaxyUser's method, but it didn't boot. I made a kernel mod to install all the files but it wasn't necessary : @thehacka1 already slimmed the ROM... Guess the size ? 150 MB !!! This guy is wonderful A lot of thanks for his first post here, please
We are testing now if it will reach the bootanimation.
Now, it reaches the bootanimation. I added the BOOTCLASSPATH from the HTC One, and it seems to work. There are several errors... the main I can see for now are
Code:
E/JNIHelp ( 404): RegisterNatives failed for 'android/content/res/AssetManager', aborting
Code:
W/InterfaceController( 403): Warning (Cannot load library: load_library[1118]: Library '/system/lib/libnetcmdiface.so' not found) while opening the net interface command library
Awesome , Let's conquer sense 5
Here we are :
Code:
Native registration unable to find class 'com/android/internal/os/RuntimeInit'
And also
Code:
W/InterfaceController( 1576): Warning (Cannot load library: load_library[1118]: Library '/system/lib/libnetcmdiface.so' not found) while opening the net interface command library
I'm testing my own kernel with sd-ext mounting and HTC One's BOOTCLASSPATH now And then I post a full logcat.
Here is the logcat.
The main errors seem to be
Code:
E/JNIHelp ( 404): RegisterNatives failed for 'android/content/res/AssetManager', aborting
Code:
W/InterfaceController( 403): Warning (Cannot load library: load_library[1118]: Library '/system/lib/libnetcmdiface.so' not found) while opening the net interface command library
izi501 said:
Here we are :
Code:
Native registration unable to find class 'com/android/internal/os/RuntimeInit'
And also
Code:
W/InterfaceController( 1576): Warning (Cannot load library: load_library[1118]: Library '/system/lib/libnetcmdiface.so' not found) while opening the net interface command library
I'm testing my own kernel with sd-ext mounting and HTC One's BOOTCLASSPATH now And then I post a full logcat.
Click to expand...
Click to collapse
i you want i want to help but i dont now how to make the logcat
izi501 said:
Here is the logcat.
The main errors seem to be
Code:
E/JNIHelp ( 404): RegisterNatives failed for 'android/content/res/AssetManager', aborting
Code:
W/InterfaceController( 403): Warning (Cannot load library: load_library[1118]: Library '/system/lib/libnetcmdiface.so' not found) while opening the net interface command library
Click to expand...
Click to collapse
Great! You didn't post what the missing native was. Remember to post the lines around the error. Anway this is just another patching error. I'm working on it.
EDIT: splitthemepackage was missing. Patching now. Might as well diff the whole AssetManager.smali file. Also @izi501 could you send me your boot.img with the modded bootclasspath?
thehacka1 said:
Great! You didn't post what the missing native was. Remember to post the lines around the error. Anway this is just another patching error. I'm working on it.
EDIT: splitthemepackage was missing. Patching now. Might as well diff the whole AssetManager.smali file. Also @izi501 could you send me your boot.img with the modded bootclasspath?
Click to expand...
Click to collapse
The kernel is in the GDrive repo, but it has the sd-ext mounting feature. In fact it is the kernel I gave you earlier
Taikun hearth said:
i you want i want to help but i dont now how to make the logcat
Click to expand...
Click to collapse
Here you are :
http://forum.xda-developers.com/showthread.php?t=2296632 to logcat
http://forum.xda-developers.com/showpost.php?p=32753912 to patch smalis
izi501 said:
The kernel is in the GDrive repo, but it has the sd-ext mounting feature. In fact it is the kernel I gave you earlier
Here you are :
http://forum.xda-developers.com/showthread.php?t=2296632 to logcat
http://forum.xda-developers.com/showpost.php?p=32753912 to patch smalis
Click to expand...
Click to collapse
thank i going to help i going to be a dev too
izi501 said:
Here we are :
....
And also
Code:
W/InterfaceController( 1576): Warning (Cannot load library: load_library[1118]: Library '/system/lib/libnetcmdiface.so' not found) while opening the net interface command library
Click to expand...
Click to collapse
we may ignore that that's just warning let's fix errors
cyb3r.pr3dat0r said:
we may ignore that that's just warning let's fix errors
Click to expand...
Click to collapse
Yes but I think that because of that netd doesn't start :-\
Envoyé depuis mon HTC FeuSauvage S avec CM10.1 et Tapatalk 4
izi501 said:
Yes but I think that because of that netd doesn't start :-\
Envoyé depuis mon HTC FeuSauvage S avec CM10.1 et Tapatalk 4
Click to expand...
Click to collapse
How is it going?
cyb3r.pr3dat0r said:
we may ignore that that's just warning let's fix errors
Click to expand...
Click to collapse
izi501 said:
Yes but I think that because of that netd doesn't start :-\
Envoyé depuis mon HTC FeuSauvage S avec CM10.1 et Tapatalk 4
Click to expand...
Click to collapse
cyb3r.pr3dat0r is right. It's the missing native method that sent the fatal signal. So I don't think it should be much of a problem.
You can't port Sense 5 without ION support in kernel. And its nearly impossible on such an old device.
galaxyfreak said:
You can't port Sense 5 without ION support in kernel. And its nearly impossible on such an old device.
Click to expand...
Click to collapse
https://wiki.linaro.org/BenjaminGaignard/ion you mean this ?
galaxyfreak said:
You can't port Sense 5 without ION support in kernel. And its nearly impossible on such an old device.
Click to expand...
Click to collapse
What do you mean? If i am right, izi and hacka have made a kernel mod for unlimited space in system partition. And the stock rom is about 850-900MB. It only needs resizing and some error fixes...
Sent from my HTC "Marvellous" WFS
Guitarfreak12 said:
What do you mean? If i am right, izi and hacka have made a kernel mod for unlimited space in system partition. And the stock rom is about 850-900MB. It only needs resizing and some error fixes...
Sent from my HTC "Marvellous" WFS
Click to expand...
Click to collapse
i think he means that we need to have ion support space is not a problem because thehacka has already super slimmed the rom , ion support as said by linaro wiki that it includes buffer sharing mechanism between process and drivers and many more things offered by ion for our device to support sense 5
cyb3r.pr3dat0r said:
i think he means that we need to have ion support space is not a problem because thehacka has already super slimmed the rom , ion support as said by linaro wiki that it includes buffer sharing mechanism between process and drivers and many more things offered by ion for our device to support sense 5
Click to expand...
Click to collapse
Let's ask @crossfire77 or @eoghan2t7, if they could add ion support.
But what is ion support and is it needed? Srry for the offtopic question
Sent from my HTC "Marvellous" WFS
ION is the unified memory allocator implemented by Google. ROMs with Android version 4.1 and above uses ION memory allocator. Legacy devices like Explorer, Wildfire S etc uses PMEM instead of ION.
Actually, the main problem which prevents Sense 5 ROM from running on your device is the CPU Architecture. Sense 5 ROM is compiled for ARMv7 processor and hence it
contains ARMv7 instructions. Wildfire S is using old
ARMv6 processor. So the libs and binaries containing ARMv7 instructions won't get executed on your device.
Sent from my HTC Explorer A310e using xda premium
Calm down guys. What the hell is with this ion support!? Les try the simplified smali patching way and then we can talk ion/pmem stuff.

Kernel android-msm-marlin-3.18-pie-qpr2 build failed

Hi all,
I am new to study the android. Right now, I faced a problem that the build would be failed at:
Running extra build command(s):
+ eval python build/buildinfo/buildinfo.py
++ python build/buildinfo/buildinfo.py
python: can't open file 'build/buildinfo/buildinfo.py': [Errno 2] No such file or directory
I noticed that there is a command line in the build.config: "EXTRA_CMDS='python build/buildinfo/buildinfo.py'". How the buildinfo folder be created? How can I solve this problem, thanks.
me too
Adlismon said:
Hi all,
I am new to study the android. Right now, I faced a problem that the build would be failed at:
Running extra build command(s):
+ eval python build/buildinfo/buildinfo.py
++ python build/buildinfo/buildinfo.py
python: can't open file 'build/buildinfo/buildinfo.py': [Errno 2] No such file or directory
I noticed that there is a command line in the build.config: "EXTRA_CMDS='python build/buildinfo/buildinfo.py'". How the buildinfo folder be created? How can I solve this problem, thanks.
Click to expand...
Click to collapse
ucantseeme said:
me too
Click to expand...
Click to collapse
i can not tell if you 2 are the same person, trying to make this issue look popular or something. ucantseeme was made today and has 1 post, OP has 1 post but account was made a few months ago.
Either way, just now i synced the repo, and built the kernel after removing the "EXTRA_CMDS='python build/buildinfo/buildinfo.py'" line from build.config and it works just fine, booted to it while i am writing this.
sudoxd said:
i can not tell if you 2 are the same person, trying to make this issue look popular or something. ucantseeme was made today and has 1 post, OP has 1 post but account was made a few months ago.
Either way, just now i synced the repo, and built the kernel after removing the "EXTRA_CMDS='python build/buildinfo/buildinfo.py'" line from build.config and it works just fine, booted to it while i am writing this.
Click to expand...
Click to collapse
Hi Sudoxd,
Thanks for your feedback. I am the creator of this topic and I don't know the "ucantseeme". Currently, I don't solve this compile error issue, but I do successfully to get the kernel image(Image.lz4) where is located at out/android-msm-xxx-xx.xx/private/msm-google/arch/arm64/boot/. I guess the function of buildinfo.py should be only to move the files to the target folder.
Adlismon said:
Hi Sudoxd,
Thanks for your feedback. I am the creator of this topic and I don't know the "ucantseeme". Currently, I don't solve this compile error issue, but I do successfully to get the kernel image(Image.lz4) where is located at out/android-msm-xxx-xx.xx/private/msm-google/arch/arm64/boot/. I guess the function of buildinfo.py should be only to move the files to the target folder.
Click to expand...
Click to collapse
The files are all outputted where they are meant to be (/out/android.../dist) already, and the image.lz4 is the normal output. If yours outputs elsewhere I would sync, delete the buildinfo line and rebuild in a new directory and see what happens.
sudoxd said:
i can not tell if you 2 are the same person, trying to make this issue look popular or something. ucantseeme was made today and has 1 post, OP has 1 post but account was made a few months ago.
Either way, just now i synced the repo, and built the kernel after removing the "EXTRA_CMDS='python build/buildinfo/buildinfo.py'" line from build.config and it works just fine, booted to it while i am writing this.
Click to expand...
Click to collapse
thank you, thank you
I solved it

Categories

Resources