(Add some links to info about X startup for debugging purposes) |
(Add details about how to backup your Tab before starting to hack!) |
||
| Line 59: | Line 59: | ||
Not working: | Not working: | ||
* Starting X - no errors, but no display, investigating currently, help appreciated! :) | * Starting X - no errors, but no display, investigating currently, help appreciated! :) | ||
| - | + | ||
| - | + | - ok so it looks like Xorg starts up fine and is running, but the screen just doesn't show anything (yeah I've checked that it's on and that the brightness is sufficient ;). Next step is to look at the fb driver and see what might be wrong there. | |
| - | + | ||
Not tried yet: | Not tried yet: | ||
| Line 96: | Line 95: | ||
To add: | To add: | ||
| - | * how to backup existing Android install using | + | * how to backup existing Android install using dd |
| + | http://forum.xda-developers.com/showthread.php?t=850359 | ||
| + | |||
| + | |||
| + | mkdir backup | ||
| + | cd backup | ||
| + | adb shell su -c "dd if=/dev/block/bml1 of=/sdcard/boot.bin bs=4096" | ||
| + | adb shell su -c "dd if=/dev/block/bml2 of=/sdcard/pit.pit bs=4096" | ||
| + | adb shell su -c "dd if=/dev/block/stl3 of=/sdcard/efs.rfs bs=4096" | ||
| + | adb shell su -c "dd if=/dev/block/bml4 of=/sdcard/Sbl.bin bs=4096" | ||
| + | adb shell su -c "dd if=/dev/block/stl6 of=/sdcard/param.lfs bs=4096" | ||
| + | adb shell su -c "dd if=/dev/block/bml7 of=/sdcard/zImage bs=4096" | ||
| + | adb shell su -c "dd if=/dev/block/stl9 of=/sdcard/factoryfs.rfs bs=4096" | ||
| + | adb shell su -c "dd if=/dev/block/stl10 of=/sdcard/dbdata.rfs bs=4096" | ||
| + | adb shell su -c "dd if=/dev/block/stl11 of=/sdcard/cache.rfs bs=4096" | ||
| + | adb shell su -c "dd if=/dev/block/bml12 of=/sdcard/modem.bin bs=4096" | ||
| + | adb shell su -c "tar -czvf /sdcard/data.tar.gz /data" | ||
| + | |||
| + | adb pull /sdcard/param.lfs . | ||
| + | adb pull /sdcard/zImage . | ||
| + | adb pull /sdcard/factoryfs.rfs . | ||
| + | adb pull /sdcard/dbdata.rfs . | ||
| + | adb pull /sdcard/cache.rfs . | ||
| + | adb pull /sdcard/modem.bin . | ||
| + | adb pull /sdcard/efs.rfs . | ||
| + | adb pull /sdcard/boot.bin . | ||
| + | adb pull /sdcard/Sbl.bin . | ||
| + | adb pull /sdcard/pit.pit . | ||
| + | adb pull /sdcard/data.tar.gz . | ||
Grab the kernel source code from http://opensource.samsung.com/ | Grab the kernel source code from http://opensource.samsung.com/ | ||
Contents |
So, I have a barebones version of MeeGo (barely) running on the Nexus S. I can't really do much with it on my own, but I'm posting the info here so you can build it and try it for yourself.
I have my boot.img (kernel + ramdisk) and a MeeGo kickstart file at http://blog.steventroughtonsmith.com/2011/01/nexus-s-meego.html; you can use fastboot to boot the image, or flash it to the recovery partition to dual boot. The actual MeeGo rootfs is run from a rootfs.ext2 file you can drop onto the Nexus S using Mass Storage mode - no need for messy flashing or the like, you can thank me later).
There's not much else I can do on my own right now, so if you want to see anything become of this do get involved!
My kernel is Samsung stock; you will need to modify it to get X11 to run:
The only change was modifying the .config file to turn on CONFIG_VT (needed for X11, unless we recompile X11 without VT support).
Will add this to a newer kickstart, but for the time being, you can bring the brightness to full by doing:
dmesg output is available on Talk:ARM/Hummingbird.
WORK IN PROGRESS, I'M STILL ADDING INFO! - 16/2/2011 If you're in a desperate hurry then feel free to catch me (lardman) on #meego-arm and pick my brain/add info/make changes here/etc. :)
Working:
Not working:
- ok so it looks like Xorg starts up fine and is running, but the screen just doesn't show anything (yeah I've checked that it's on and that the brightness is sufficient ;). Next step is to look at the fb driver and see what might be wrong there.
Not tried yet:
If you would like to help, have questions, ideas, etc., please catch me (lardman) in #meego-arm
The idea here is to boot Meego from the external SD card (similar to the N900 Meego boot process.)
Currently this requires that you flash a new, slightly modified, kernel to your Tab.
The Tab kernel contains an initramfs which contains an Android version of init which brings the system up.
With Android devices, there is normally a hardware key you can press at boot time to specify whether you want to enter flashing mode or recovery mode (and no keypress indicates a normal startup.) On the Tab the flashing key is the volume down button and the recovery button is the volume up button.
With most Android devices the normal and recovery boots load different kernels (located on different partitions.) This is nice as it means one does not need to modify the normal Android kernel at all, but can still mess about with other kernels in the recovery kernel partition (e.g. to try booting Meego, at the expense of no recovery mode, which is not a big problem.) But, in their infinite wisdom, Samsung decided that both normal and recovery modes would use the same kernel on the Tab. Rather than booting a completely separate kernel, the Tab boots the same kernel and the Android-specific init somehow recognises which mode was selected at boot time. It then proceeds to process either init.rc or recovery.rc.
Now this would give us an option of modifying the boot process, but the major problem is that while the Android init should support an exec command, this is not implemented in the version we have, and therefore even if we modify the recovery.rc file to try to start our own script to switch_root, etc., it won't work. The Android init used in the Tab is not stock Google code and there is no source available for the modifications.
Therefore I've renamed the Android init and replaced with it an init script which searches for Meego installations (btrfs partitions on the external SD card, or loop images) and if these are not found exec's the renamed Android init, which goes on its merry way and starts Android just like normal.
To add:
http://forum.xda-developers.com/showthread.php?t=850359
mkdir backup cd backup adb shell su -c "dd if=/dev/block/bml1 of=/sdcard/boot.bin bs=4096" adb shell su -c "dd if=/dev/block/bml2 of=/sdcard/pit.pit bs=4096" adb shell su -c "dd if=/dev/block/stl3 of=/sdcard/efs.rfs bs=4096" adb shell su -c "dd if=/dev/block/bml4 of=/sdcard/Sbl.bin bs=4096" adb shell su -c "dd if=/dev/block/stl6 of=/sdcard/param.lfs bs=4096" adb shell su -c "dd if=/dev/block/bml7 of=/sdcard/zImage bs=4096" adb shell su -c "dd if=/dev/block/stl9 of=/sdcard/factoryfs.rfs bs=4096" adb shell su -c "dd if=/dev/block/stl10 of=/sdcard/dbdata.rfs bs=4096" adb shell su -c "dd if=/dev/block/stl11 of=/sdcard/cache.rfs bs=4096" adb shell su -c "dd if=/dev/block/bml12 of=/sdcard/modem.bin bs=4096" adb shell su -c "tar -czvf /sdcard/data.tar.gz /data" adb pull /sdcard/param.lfs . adb pull /sdcard/zImage . adb pull /sdcard/factoryfs.rfs . adb pull /sdcard/dbdata.rfs . adb pull /sdcard/cache.rfs . adb pull /sdcard/modem.bin . adb pull /sdcard/efs.rfs . adb pull /sdcard/boot.bin . adb pull /sdcard/Sbl.bin . adb pull /sdcard/pit.pit . adb pull /sdcard/data.tar.gz .
Grab the kernel source code from http://opensource.samsung.com/ Follow: Mobile > Mobile Phone > GT-P1000 > GT-P1000_OpenSource.zip. There is a new GT-P1000_OpenSource_Update1.zip but I've not tried that, please do tell if it works or works better ;)
Extract the source, follow the instructions in the readme.txt to grab the cross-compiler and edit the relevant settings in the build_kernel.sh script.
Note that we use the same source and toolchain so that the PVR kernel modules will still work (as we're dual booting Android)
Try compiling to see if it all works. It should do. If you get the following warning "WARNING: modpost: Found 13 section mismatch(es).", don't worry, that appears to be normal (!)
Note that we could try enabling kexec if we find that keeping compatibility with the Android kernel is too limiting and then kexec away to our less constrained kernel. Need to test this.
Add note about "extras" - modules are in initramfs, so just extract these and add to the image; wifi firmware and other files are in the Android install. We could extract these at runtime, but currently are setup for them to be pre-extracted and added to the Meego partition. Make some notes about location of these files and alternative methods of extracting at runtime.
(sudo mic-image-creator --run-mode=0 --cache=/home/simon/development/meego/build/mycachedir/ --format=raw --arch=armv7l --config=./meego-handset-armv7l-galaxy-tab-1.1.80.15.20110118.5.ks)
MeeGo on ARM/Snapdragon (MSM/QSD)