AndreasWatch
Member
- Dec 11, 2012
- 29
- 9
Good to know, I thought it would be the same problem as with the ICS kernel at the beginning ...my fault.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
I'm sorry for the inconvenience and thank you, I can now build and boot the kernel.
I misunderstood you...I thought that the kernel can only build correctly with a customized tool chain, but the problem was really at the source and at the initramfs.
I have no idea what was wrong, but after I unpacked both new it worked.
If anyone is interested in it: I'm using the toolchain provided by CM.
#!/bin/bash
#
export ARCH=arm
export CROSS_COMPILE=arm-eabi-
export PATH=/home/smarcdroid/S9714/tools/arm-eabi/arm-eabi-4.6/bin:$PATH
cd kernel
make tegra3_android_defconfig
make -j4
Nice! It'd be nice if you could get a kernel withSeLinux running so we can have KitKat.So, I finally made it. The kernel is runnig. So what was the problem ?
Look at this code:
Code:#!/bin/bash # export ARCH=arm export CROSS_COMPILE=arm-eabi- export PATH=/home/smarcdroid/S9714/tools/arm-eabi/arm-eabi-4.6/bin:$PATH cd kernel make tegra3_android_defconfig make -j4
The line containing 'make tegra3_android_defconfig' lead me to problems compiling my kernel. For some reason the .config-File in the top-directory of the kernel source looked like the one from /proc/config.gz, but it wasn't.
I assumed, that something on the config went wrong. I copied /proc/config.gz to [kernel-source]/arch/arm/configs/ and gunzipped it. I've renamed tegra3_android_defconfig to tegra3_android_defconfig.old. Then replaced the name of config with tegra3_android_defconfig.
I've compiled the kernel, packed the bootimage and an update.zip with the modules. Wrote the stuff to the device and now it runs. Nice base for more adventures
Let's see what's next...
So the problem was wrong .config, right?So, I finally made it. The kernel is runnig. So what was the problem ?
Is there an existing thread dealing with the Medion Lifetab S9714 ? Do you'll think it's a good idea to create one, if not ? I'm thinking about the right place to discuss all the device depending stuff during build of Android 5.0 Lollipop.
"AFAIK S9714 = A2109 + 3G"
That might be exactly correct. But I'd some issues on using A2109 ROMS on my S9714. Especially the one from Paranoid I've tried. The version I put on my tab had problems with the different standby/sleep states. Switched the tab sleep at a battery load of 88%. About 10 hrs later the left percentage was at 18%. That's not something you want to have.
I checked the bootimage. The kernel was build with the Linaro-Toolchain. I think the maker of this one made use of the optimization flags of the compiler, leading to a pretty fast kernel binary on one hand and a significant loss of stability on the other.
Did you observe effects like this on your A2109 in the past ? Was it a problem fixable by turning the right setup values ?
I look forward to work together with you on that ROM. I've the device stuff ready. Still problems with the 3G-Modem, but that's ok for the moment. Build process can start now. I'll report status within the next days...