![]() |
2008-01-08
, 18:51
|
Posts: 678 |
Thanked: 197 times |
Joined on Jul 2007
@ San Jose CA
|
#72
|
Fanoush and others,
I'm really new to this linux and I barely understand these threads about dual booting.
Can someone point me in the right direction.
I would like to have only the os2008 boot from my removable 16gb card. I don't want or need os2007. Is this possible and will all my apps and updated apps from os2008 work properly? If there is a final version of this coming i will gladly wait. Thanks, lol, Dan
![]() |
2008-01-10
, 10:34
|
Posts: 162 |
Thanked: 351 times |
Joined on Apr 2006
@ Cotswolds, UK
|
#73
|
# Set up card names by model # Assume 770 INT_CARD="" EXT_CARD="mmcblk0" if grep -q RX-34 /proc/component_version then #N800 INT_CARD="mmcblk0" if grep -q mmcblk1 /proc/partitions then # Removable card present EXT_CARD="mmcblk1" else # Removable card not present EXT_CARD="" fi fi if grep -q RX-44 /proc/component_version then #N810 if grep -q mmcblk1 /proc/partitions then # Removable card present INT_CARD="mmcblk1" EXT_CARD="mmcblk0" else # Removable card not present INT_CARD="mmcblk0" EXT_CARD="" fi fi
MENU_2_NAME="Boot internal MMC card, partiton 2, ext2" MENU_2_ID="mmcint2" MENU_2_DEVICE=${INT_CARD}p2 MENU_2_MODULES="mbcache ext2" MENU_2_FSTYPE="ext2" MENU_2_FSOPTIONS="noatime" MENU_3_NAME="Boot removable MMC card, partiton 2, ext2" [ -z "$EXT_CARD" ] && MENU_3_NAME="No removable card -- do not select this" MENU_3_ID="mmcext2" MENU_3_DEVICE=${EXT_CARD}p2 MENU_3_MODULES="mbcache ext2" MENU_3_FSTYPE="ext2" MENU_3_FSOPTIONS="noatime"
![]() |
2008-01-10
, 11:36
|
Posts: 2,152 |
Thanked: 1,490 times |
Joined on Jan 2006
@ Czech Republic
|
#74
|
![]() |
2008-01-10
, 12:08
|
Posts: 2,152 |
Thanked: 1,490 times |
Joined on Jan 2006
@ Czech Republic
|
#75
|
![]() |
2008-01-12
, 20:40
|
Posts: 155 |
Thanked: 20 times |
Joined on Nov 2007
|
#76
|
You can flash full firmware from linux PC via
You can flash only initfs part by adding --flash-only initfs so whole line isCode:flasher-3.0 -f -F RX-34_2008SE_2.2007.50-2_PR_COMBINED_MR0_ARM.bin -R
This will, restore initfs without losing any other data.Code:flasher-3.0 --flash-only initfs -f -F RX-34_2008SE_2.2007.50-2_PR_COMBINED_MR0_ARM.bin -R
![]() |
2008-01-13
, 12:10
|
Posts: 2,152 |
Thanked: 1,490 times |
Joined on Jan 2006
@ Czech Republic
|
#77
|
I currently have 2008 on the SD card and 2007 on internal. If I boot from SD, then wireless doesn't work as you have noted.
If I flash the initfs with 2008 as above and boot from SD card, will that work or break everything?
Is it possible to redo the initfs from the tablet itself, rather than having to flash from a PC?
![]() |
2008-01-13
, 19:39
|
Posts: 155 |
Thanked: 20 times |
Joined on Nov 2007
|
#78
|
You should always have matching kernel and initfs or tablet may not boot. So if you flash initfs for OS2008 you should also flash kernel for OS2008.
Yes, you can flash prepared initfs image from the tablet, just run initfs_flash script with existing jffs2 initfs image.This will skip the wizard and just flash the image (original or with bootmenu, doesn't matter). There should be one or two such images in initfs_flasher directory if you installed bootmenu.
If you combine this with kernel flasher you can do it in one go before rebooting to different OS200x. First flash kernel, then initfs and reboot.
![]() |
2008-01-23
, 04:34
|
Posts: 51 |
Thanked: 2 times |
Joined on Jan 2008
|
#79
|
![]() |
2008-01-23
, 04:55
|
Posts: 21 |
Thanked: 2 times |
Joined on Dec 2007
@ Arizona
|
#80
|
I'm really new to this linux and I barely understand these threads about dual booting.
Can someone point me in the right direction.
I would like to have only the os2008 boot from my removable 16gb card. I don't want or need os2007. Is this possible and will all my apps and updated apps from os2008 work properly? If there is a final version of this coming i will gladly wait. Thanks, lol, Dan