Hi All, (sorry for my language)
I can not upgrade or use my Trinity. Device freezing while booting-up. And Red NO GSM message appears on the bottom line. When blue Windows Mobile splash screen comings up, device freezing.
I'm trying to re-flash with SD card method (extract nbh file and rename to TRINING.nbh and put to te SD card and start manual bootloader) NOT ALLOW message appears on the upper line.
My device SPL version is 1.05. How can i rescue my trinity?
Thanks in advance...
seem u upgrade wrong version...try flash with original OS ROM, or else return to "them" to repair....
If you can figure out how to compile splxploit, you can fix this, see
http://forum.xda-developers.com/showthread.php?t=308691
@stepw,
Thank you stepw. Problem is "how to compile splxploit" I'm using Windows XP OS on my notebook.
RUU_signed.nbh extracted and waiting for next steps.
What is the next steps, who can explain to me.
Thanks in advance
ya, i try mingw to compiler but doesn't work. or it say error somewhere on file splxploit.c......Just wait for new answer. I brick my dopod810...and i'm waiting for your answer....
tuannghia1985 said:
ya, i try mingw to compiler but doesn't work. or it say error somewhere on file splxploit.c......Just wait for new answer. I brick my dopod810...and i'm waiting for your answer....
Click to expand...
Click to collapse
The issue was resolved for tuannghia1985 in the other thread
I am trying to use the splxploit, but am not at all familiar with Linux. Could do with a few pointers ....
I am using a Live CD of Knoppix on my windows PC. It appears to run very well, and seems to have gcc installed already as default.
What I did was unzip the splxploit.c file to the desktop and then went to the run command and typed "gcc splxploit.c -o splxploit" a console popped up, but gave a message saying gcc : couldn't find file or directory". I tried various combinations e.g "gcc home/knoppix/Desktop splxploit.c -o splxploit" but just couldn't get it to work. I think I am just telling the gcc program to look in the wrong place.
ANy help would be appreciated !!
gaz
Hey there, I'm compiling the android source with a couple of mods merged in from cyanogenmod and leonnib4. I was getting a few random errors, but they went away with simple fixes...Now, I'm getting a new error, and I can't seem to wrap my head around it. It happens almost right out of the gate...every time I type make...
EDIT: New error 41. I seemed to have fixed the old error 1 by removing the previous build from out/target/product/passion, as the error pointed to the obj folder. Everything went smooth until the camera, and now I have a new error. I'm trying to merge in CyanogenMod camera source (for 720p), and I think that's the problem. Could it be something in the framework? I'm lost.
I have set up my build env on a MacBook Pro running OS X 10.5.8 with all the proper tools installed as per the AOSP site's instructions. I have run the envsetup script, and chosen the passion lunch option (yum )...
Anyway, here's the error:
Code:
81 errors
make: *** [out/target/common/obj/APPS/Camera_intermediates/classes-full-debug.jar] Error 41
The full scenario on pastebin: http://pastebin.com/8359mktC
Does anyone have any idea what's going on?
ik this is really old but what did u do to fix this? having the same error compiling cm9
i am trying to compile kernel src from dell with android ndk. i got this error
SYMLINK include/asm -> include/asm-arm
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 "-mabi=apcs-gnu"
kernel/bounds.c:1: error: bad value (armv5t) for -march= switch
kernel/bounds.c:1: error: bad value (armv5t) for -mtune= switch
make[1]: *** [kernel/bounds.s] Error 1
make: *** [prepare0] Error 2
where can i find nvidia src from how_to_build.txt ?
thanks
mashi said:
i am trying to compile kernel src from dell with android ndk. i got this error
SYMLINK include/asm -> include/asm-arm
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 "-mabi=apcs-gnu"
kernel/bounds.c:1: error: bad value (armv5t) for -march= switch
kernel/bounds.c:1: error: bad value (armv5t) for -mtune= switch
make[1]: *** [kernel/bounds.s] Error 1
make: *** [prepare0] Error 2
where can i find nvidia src from how_to_build.txt ?
thanks
Click to expand...
Click to collapse
I told you the other day how to fix that stuff... You're not specifying the cross compiler to use.
export PATH=$PATH:/media3/android/ds7/dev/arm-2010q1/bin
export CROSS_COMPILE=arm-none-linux-gnueabi-
export ARCH=arm
Using CodeSorcery. If you're using something else, substitute, and of course update the path.
As for the nvidia source.. I never did find 2.6.32.9 from nvidia, but I did find this..
http://developer.nvidia.com/tegra/forum/build-android-source-tegra-250
From which I was able to grab it. Then I ran into this:
http://developer.nvidia.com/tegra/forum/linux-kernel-compilation-error-when-building-confignfsfsm
In the end, either source of the kernel I used, one gave me that the symbol map didn't match (using Dell source 3.36) and the other I kept getting the outer_cache symbol missing (from the nvidia source).
I suspect that it's just a matter of setting up the kernel correctly. I'm using /proc/config.gz but I googled around a bit and some folks here on XDA building a kernel on a phone were saying they had to add some extra parameters given to them by Samsung before being able to successfully build a module that would work for their phone.
Hopefully one of us figures it out... You want CIFS, I want TUN.
echo $PATH
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/X11R6/bin:/home/alan/android-ndk-r5c/toolchains/arm-eabi-4.4.0/prebuilt/linux-x86/bin
echo $CROSS_COMPILER
/home/alan/android-ndk-r5c/toolchains/arm-eabi-4.4.0/prebuilt/linux-x86/bin/arm-eabi-
echo $ARCH
arm
I have set all those path before compile the kernel
khaytsus said:
I told you the other day how to fix that stuff... You're not specifying the cross compiler to use.
export PATH=$PATH:/media3/android/ds7/dev/arm-2010q1/bin
export CROSS_COMPILE=arm-none-linux-gnueabi-
export ARCH=arm
Using CodeSorcery. If you're using something else, substitute, and of course update the path.
As for the nvidia source.. I never did find 2.6.32.9 from nvidia, but I did find this..
http://developer.nvidia.com/tegra/forum/build-android-source-tegra-250
From which I was able to grab it. Then I ran into this:
http://developer.nvidia.com/tegra/forum/linux-kernel-compilation-error-when-building-confignfsfsm
In the end, either source of the kernel I used, one gave me that the symbol map didn't match (using Dell source 3.36) and the other I kept getting the outer_cache symbol missing (from the nvidia source).
I suspect that it's just a matter of setting up the kernel correctly. I'm using /proc/config.gz but I googled around a bit and some folks here on XDA building a kernel on a phone were saying they had to add some extra parameters given to them by Samsung before being able to successfully build a module that would work for their phone.
Hopefully one of us figures it out... You want CIFS, I want TUN.
Click to expand...
Click to collapse
I'll be following this thread as I'm trying to figure this out, too (I'm very much a Linux n00b, though, so the progress is incredibly slow). I think the kernel compilation is the main thing holding us back from getting some custom ROMs on here; once the parameters of the build environment are found, we'll probably have an easier time of it (and, good as DJ_Steve is, it would be nice to have a few more devs working this device).
Does this link help at all?
http://opensource.dell.com/releases/streak7/3.36/HOW-TO-BUILD.txt
Z4nd4r said:
I'll be following this thread as I'm trying to figure this out, too (I'm very much a Linux n00b, though, so the progress is incredibly slow). I think the kernel compilation is the main thing holding us back from getting some custom ROMs on here; once the parameters of the build environment are found, we'll probably have an easier time of it (and, good as DJ_Steve is, it would be nice to have a few more devs working this device).
Does this link help at all?
http://opensource.dell.com/releases/streak7/3.36/HOW-TO-BUILD.txt
Click to expand...
Click to collapse
Not really, at least not me.. First off finding nvidia Froyo source was a PITA and I only got it from a clone of the old repo so no tellling there.. Plus the other steps seem to mostly be nonsense, as files don't match up, etc..
Otherwise, I can readily compile the Dell code but the output won't load.. Symbol map does not match; ie: config is different. Maybe even compiler differences.. Dunno.
Im sorry for my noobness, but what would this code actually do for us? Would we then have the ability to compile our own kernels and overclock and whatnot?
ssmr2t said:
Im sorry for my noobness, but what would this code actually do for us? Would we then have the ability to compile our own kernels and overclock and whatnot?
Click to expand...
Click to collapse
Maybe, but I just want tun.ko for now. Still no luck today, switched to Android NDK but still symbol issues.
Sent from my Dell Streak 7 using Tapatalk
If u can catch it compiler version is output through dmesg during bootup I don't have me streak handy or I would check. Compiler version may very well play a roll in modules loading though I have experienced it on x86 anyway
Brandas said:
If u can catch it compiler version is output through dmesg during bootup I don't have me streak handy or I would check. Compiler version may very well play a roll in modules loading though I have experienced it on x86 anyway
Click to expand...
Click to collapse
Good idea, but it doesn't seem to have much info..
<5>[ 0.000000] Linux version 2.6.32.9 ([email protected]) (gcc version 4.4.0 (GCC) ) #8 SMP PREEMPT Mon Mar 28 14:04:54 CST 2011
Thread Resurrection in progress.
I'm going to be adding FTDI VCP support. Figured I'd post here to see what progress others have made... was a little surprised to only find 2 dev pages for this tablet.
Yeah, I've been working on a 2.6.35 kernel myself slowly, but I totally screwed it up and need to start over.
Maybe who try developing kernel should search help in other tegra2 device forums
Sent from my LG-P500 using Tapatalk
nikoltu said:
Maybe who try developing kernel should search help in other tegra2 device forums
Click to expand...
Click to collapse
Any particular forum you have in mind? I did take a look at the somewhat updated Dell Opensource page:
http://opensource.dell.com/releases/streak7/5.06/
But it is definitely aimed at HC, and I don't think it would do much for an ICS build. On the other hand, at least it gives what "appears" to be the source and binaries for the devices (though I'm a little more inclined to use what I was able to pull off the device with ADB).
FWIW...
---------- Post added at 11:52 AM ---------- Previous post was at 11:33 AM ----------
One other link that appears to be of interest:
http://developer.nvidia.com/tegra-resources
Note the releases as of 12/19 of updated Tegra kits
The info from opensource.dell.com is missing a lot of information.
Hi!
I have kais130
I use "Froyo[2.2.2]: My Modified Fresh Froyo Release 20-2-2011" rom and have some issue with it: eventually (2-3 days after clean system install) many process like launcher, acore and many other just stop responding. Hot reboot or soft reset makes it worse, device just wont boot. And the same think happens with all of the roms I used. I have data and system installed on nand. Tried haret install, but i got some trouble with argument:
Mount: mounting/dev/block/mmcblk op1 on/ sdcard failed: invalid argument
/init line 334: mont_opt: not found sh: 2: unknown
............................................................................
Possibly non-existent or swap device?
I have 2 sd cards for nand install i used 1gb sd and for haret i used 16gb sdhc class 6 card.
If its necessary: i have panel type 1, used 2.6.25 kernel (because installing on 2.6.32 got some errors with bad blocks and failed to extract). Also i read on some post, that for the stable work don't use Rogue Tools (i use it).
While installing any rom on 2.6.25 kernel i have no errors but Fix permission on files:
Chown: data/app_s: No such file or directory (X2)
Chown: System/etc/bluez: No such file or directory (X4)
Chown: system/init: No such file or directory (X2)
and some errors while booting some thing with: data/sysfiles/su path don't exist and some no such file or directory( which i don't remember) + error no local ept for prog 02000031 replying anyway!
Is there some magical way to solve this problem?
Thanks for any reply!
Sorry for my English cause i m Russian.
I think I am having the same problem. I flashed the Eclair nbh file ant it gave me that error.
While trying to port Ubuntu touch to Xperia L(codename taoshan) using cm source code an compilation error is arising.
$host Executable: aprotoc (phablet/out/host/linux-x86/obj/EXECUTABLES/aprotoc_intermediates/aprotoc)
$phablet/out/host/linux-x86/obj/EXECUTABLES/aprotoc_intermediates/src/google/protobuf/compiler/parser.o: file not recognized: File truncated
$collect2: error: ld returned 1 exit status
$make: *** [phablet/out/host/linux-x86/obj/EXECUTABLES/aprotoc_intermediates/aprotoc] Error 1
After googling for a while, most of what I got is it's some kinda problem relating with OPENCV,although I've no idea what it is.
I've treid setting ANDROID_OPENCV=/media/vihit/227480fc-d7e5-4de2-ac02-18da54b81aac/android-sdk-linux/opencv-2.4.10/ but couldn't do further steps because most of them are related to QT projects. Does anyone have any idea what I can do?