The Following 3 Users Say Thank You to philheaton For This Useful Post: | ||
|
2011-06-23
, 14:36
|
Posts: 130 |
Thanked: 24 times |
Joined on Jan 2011
|
#32
|
|
2011-06-23
, 14:40
|
|
Posts: 1,411 |
Thanked: 1,330 times |
Joined on Jan 2010
@ Tatooine
|
#33
|
can some one do me a favour and some other people as well..
can someone put instructions on how to download it (just like how to download android, it was pretty easy). i've never had meego and love to try but cant download it .. (tried once be4 and destroyed the system on my phone and had to take it to the warehouse and left it for a month to fix it).. so it would be great to put instructions
thankx
The Following 7 Users Say Thank You to jedi For This Useful Post: | ||
|
2011-06-23
, 14:54
|
|
Posts: 302 |
Thanked: 193 times |
Joined on Oct 2008
@ England
|
#34
|
The Following 9 Users Say Thank You to Captwheeto For This Useful Post: | ||
|
2011-06-23
, 15:09
|
|
Posts: 584 |
Thanked: 700 times |
Joined on Jan 2010
|
#35
|
|
2011-06-23
, 15:14
|
Posts: 536 |
Thanked: 81 times |
Joined on May 2011
@ Russia
|
#36
|
|
2011-06-23
, 15:26
|
Posts: 439 |
Thanked: 192 times |
Joined on Oct 2009
@ spain-aragon-zaragoza
|
#38
|
|
2011-06-23
, 15:30
|
Posts: 293 |
Thanked: 81 times |
Joined on Dec 2010
@ Al Quds, Isawiya
|
#39
|
|
2011-06-23
, 16:40
|
Posts: 309 |
Thanked: 456 times |
Joined on Jan 2010
|
#40
|
sudo gainroot cd /home/user # Prerequisites apt-get install -y wget flasher mkimage #1. Download power kernel deb file from repository and extract fiasco image from it wget http://repository.maemo.org/extras-devel/pool/fremantle/free/k/kernel-power/kernel-power_2.6.28-10power47_armel.deb -O kernel-power_2.6.28-10power47_armel.deb dpkg --fsys-tarfile kernel-power_2.6.28-10power47_armel.deb | tar -xf - ./boot/zImage-2.6.28.10-power47.fiasco mv ./boot/zImage-2.6.28.10-power47.fiasco /home/user/ rm -r boot rm kernel-power_2.6.28-10power47_armel.deb #2. Download Matan's u-boot from repository (it is named u-boot-for-power-kernel) and extract file image from it wget http://repository.maemo.org/extras-devel/pool/fremantle/free/u/u-boot-for-power-kernel/u-boot-for-power-kernel_1.0_all.deb -O u-boot-for-power-kernel_1.0_all.deb dpkg --fsys-tarfile u-boot-for-power-kernel_1.0_all.deb | tar -xf - ./usr/lib/u-boot/u-boot.bin.0x38000/u-boot.bin.0x38000 mv ./usr/lib/u-boot/u-boot.bin.0x38000/u-boot.bin.0x38000 /home/user/vmlinuz-2.6.28.10-power47 rm -r usr rm u-boot-for-power-kernel_1.0_all.deb #3. Unpack Fiasco image flasher -u -F zImage-2.6.28.10-power47.fiasco rm zImage-2.6.28.10-power47.fiasco #4. Transform zImage in uImage (necessary because u-boot boots Kernel only in uImage file format) mkimage -A arm -O linux -T kernel -C none -a 80008000 -e 80008000 -n "Power Kernel v47" -d zImage uImage #5. Add power kernel uImage at end of previous file (starting write at offset 0x38000 aka 448 blocks) dd if=uImage of=vmlinuz-2.6.28.10-power47 seek=448 #6. Remove zImage & uImage rm zImage rm uImage
#7. Flash the kernel softupd -vv -s --local(that is a double v)
sudo gainroot flasher --local -f -k /home/user/vmlinuz-2.6.28.10-power47
#8. Optional - Multiboot - backup and replace Power47 mv /boot/zImage-2.6.28.10-power47 /boot/multiboot/vmlinuz-2.6.28.10-power47-bak mv /boot/multiboot/vmlinuz-2.6.28.10-power47 /boot/multiboot/vmlinuz-2.6.28.10-power47-bak mv /home/user/vmlinuz-2.6.28.10-power47 /boot/multiboot/vmlinuz-2.6.28.10-power47
To downgrade, the command should be something along the lines of:
Last edited by philheaton; 2011-06-23 at 14:29.