|
2014-11-01
, 21:13
|
Posts: 165 |
Thanked: 625 times |
Joined on Oct 2012
|
#12
|
|
2014-11-03
, 20:21
|
Posts: 165 |
Thanked: 625 times |
Joined on Oct 2012
|
#13
|
The Following 6 Users Say Thank You to hedayat For This Useful Post: | ||
|
2014-11-16
, 14:35
|
Posts: 207 |
Thanked: 66 times |
Joined on Dec 2012
@ Syria - Tartus
|
#14
|
|
2014-11-17
, 18:17
|
Posts: 207 |
Thanked: 66 times |
Joined on Dec 2012
@ Syria - Tartus
|
#16
|
|
2014-11-17
, 19:38
|
Posts: 165 |
Thanked: 625 times |
Joined on Oct 2012
|
#17
|
G_OS6_1_FILE="/boot/Sailfish/boot/vmlinuz-3.5.3-1.1.1-n950"
6. Create an ext4 filesystem image of the desired OS. You can do this in Harmattan like this: dd if=/dev/zero of=/home/user/MyDocs/boot/sailfish.img bs=1024M seek=1 count=0 /sbin/mkfs.ext4 /home/user/MyDocs/boot/sailfish.img mount -o loop /home/user/MyDocs/boot/sailfish.img /mnt/ tar -xf sailfish-image.tar.bz2 --numeric-owner -C /mnt/ cp /mnt/boot/vmlinuz-3.5.3-1.1.1-n950 /home/user/MyDocs/boot/ umount /mnt
cd /home/user/MyDocs/boot/ xz -d sailfish-hv-1.1.0.39-20141110.img.xz mv sailfish-hv-1.1.0.39-20141110.img sailfish.img mv vmlinuz-3.5.3-1.1.1-n950-sailfish vmlinuz-3.5.3-1.1.1-n950
The Following 4 Users Say Thank You to hedayat For This Useful Post: | ||
|
2015-10-07
, 23:24
|
Posts: 119 |
Thanked: 217 times |
Joined on Feb 2015
@ Poland
|
#18
|
(If you use my Sailfish image, you don't need to run above commands at all. All you need to do is to copy both the kernel and .img.xz file inside your MyDocs/boot directory, decompress the .xz image and rename it to sailfish.img; and, rename the kernel to vmlinuz-3.5.3-1.1.1-n950 (or change the kernel name inside ubiboot.conf):
Code:cd /home/user/MyDocs/boot/ xz -d sailfish-hv-1.1.0.39-20141110.img.xz mv sailfish-hv-1.1.0.39-20141110.img sailfish.img mv vmlinuz-3.5.3-1.1.1-n950-sailfish vmlinuz-3.5.3-1.1.1-n950
|
2015-10-08
, 11:54
|
Posts: 165 |
Thanked: 625 times |
Joined on Oct 2012
|
#19
|
The Following 2 Users Say Thank You to hedayat For This Useful Post: | ||
|
2015-10-17
, 08:34
|
|
Posts: 108 |
Thanked: 579 times |
Joined on Feb 2013
@ Požega, Croatia
|
#20
|
# Single kick should be enough, but we add a few ones for safety! kick_watchdog() { echo XXX > /dev/watchdog echo XXX > /dev/twl4030_wdt #New kernels don't use named watchdogs but use /dev/watchdog0, /dev/watchdog1... #/dev/watchdog is still there for comaptibility, but is tied to first wd (/dev/watchdog0) only echo XXX > /dev/watchdog1 }
cpio -id --no-absolute-filenames < ../loop_boot.cpio find . | cpio -H newc -o > ../loop_boot.cpio
And yes, I already abuse, lile you wrote under '2.'. ;-) So take your time, it is not
absolutely essential.