Boot from sd card/zh cn

From Openmoko

(Difference between revisions)
Jump to: navigation, search
m (-Technical, -Documentation, -Guides, +Flashing penmoko, +System devlopers)
(Redirecting to Booting from SD/zh cn)
 
Line 1: Line 1:
{{Languages|Boot from sd card}}
+
#REDIRECT [[Booting from SD/zh cn]]
=NOR in GTA02 history=
+
__NOTOC__
+
 
+
GTA 02内置了2MB的NOR flash。在DVT4(2008 四月在台北发布)之前,GTA02 NOR 在硬件上并没有做NOR写保护控制。在DVT4之后发布的软件包,及量产的产品,都包含了硬件的NOR写保护功能。你必须使用debug board v3 或之后的版本,来禁止NOR 写保护,之后就可以在GTA02上更新NOR。
+
 
+
DVT4 单元及PVT1组件都会使用 "uImage"做为它的内核影像文件名,而不是使用"uImage.bin" 。你可以在启动画面上找到它的日期,了解你的硬件设备上所使用的版本。
+
 
+
*你可以在以下的位置找到启动NOR写入功能的组件:
+
[http://svn.openmoko.org/trunk/src/host/norwp/ 禁止NOR写保护]
+
 
+
*在用户空间中执行的脚本可以写NOR [http://svn.openmoko.org/trunk/src/host/devirginator/flashnor Flash NOR script]
+
 
+
==历史版本==
+
 
+
* 20080226 初版
+
* 20080305 修复DFU,并且删除NOR版本,使用NAND功能
+
* 20080312 修复SD卡引导功能 (把内核影像文件名从uImage改为uImage.bin)
+
* 20080320 修复u-boot direct drawing 500mA 、智能充电、量产版本。
+
 
+
=制作可引导的SD卡(GTA02)=
+
 
+
以下为制作可引导的SD卡的操作步骤指引。它使用ubuntu 及一张干净的512MB Sandisk microSD 卡(缺省使用FAT16分区格式):
+
 
+
*Step 1, 缷载磁盘:
+
 
+
  sudo umount /media/disk-1
+
 
+
接着将磁盘分为二个分区,第一个分区使用vfat,预留8MB空间存放uImage.bin,第二个分区(剩余的磁盘空间)使用ext2格式,用于存放rootfs 及目录使用。二个分区都使用primary partition 类型。
+
 
+
*Step 2, fdisk:
+
 
+
  sudo fdisk /dev/mmcblk0
+
 
+
  Command (m for help): d
+
  Selected partition 1
+
  Command (m for help): n
+
  Command action
+
      e  extended
+
      p  primary partition (1-4)
+
  p
+
  Partition number (1-4): 1
+
  First cylinder (1-983, default 1):
+
  Using default value 1
+
  Last cylinder or +size or +sizeM or +sizeK (1-983, default 983): +8M
+
  Command (m for help): n
+
  Command action
+
      e  extended
+
      p  primary partition (1-4)
+
  p
+
  Partition number (1-4): 2
+
  First cylinder (18-983, default 18):
+
  Using default value 18
+
  Last cylinder or +size or +sizeM or +sizeK (18-983, default 983):
+
  Using default value 983
+
  Command (m for help): w
+
  The partition table has been altered!
+
  Calling ioctl() to re-read partition table.
+
  Syncing disks.
+
 
+
*Step 3 格式化:
+
 
+
分别用vfat和ext2格式化上述两个分区
+
 
+
  mkfs -t vfat /dev/mmcblk0p1
+
 
+
  mkfs -t ext2 /dev/mmcblk0p2
+
 
+
*Step 4 拷贝内核以及rootfs到上述两个分区:
+
 
+
uImage.bin为量产版所使用的内核映像文件,而uImage则为较早期版本所使用的文件(DVT4/PVT1)。必须解压缩rootfs.tar.gz来获得uImage.bin和rootfs。
+
  tar -zxvf rootfs.tar.gz
+
 
+
  sudo cp -r ./kernel/uImage.bin /media/disk-1
+
 
+
  sudo cp -r ./root_files/. /media/disk-2
+
 
+
  sync
+
 
+
*Step 5 在Neo的菜单中,选择 boot from SD (在正确的 u-boot_env 内容下)
+
 
+
=开机环境 (GTA02)=
+
 
+
在GTA02 NAND下有六个分割区。
+
 
+
* 1. u-boot.bin
+
* 2. u-boot_env
+
* 3. kernel (uImage.bin)
+
* 4. splash.gz (splash screen)
+
* 5. Factory (BT/WLAN/Serial...etc)
+
* 6. rootfs
+
 
+
预设的GTA02 env 档案最原始的版本(2008/7)可以在下面的地址找到 [http://people.openmoko.org/tony_tu/GTA02/images/20080424_gta02_release/env-5secs.env 预设env檔]
+
 
+
你可以使用下面的 env.new 档案,在开机画面中加入 boot from sd 功能选项。  [http://people.openmoko.org/tony_tu/GTA02/images/env_files/env.new u-boot environment].
+
 
+
* ./dfu-util -a u-boot_env -R -D env.new
+
 
+
=自NOR (GTA02)下开机=
+
 
+
如果你想要自NOR下开机,并且从SD卡中使用NOR,请使用下列的操作步骤。
+
 
+
* 按下AUX key
+
* 再按住Power,启动GTA02
+
* 约一秒后放开AUX
+
 
+
接着,你可以进入预设的NOR开机选单,你可以:
+
* 使用NOR开机,使用DFU
+
* 使用NOR开机画面自SD卡开机
+
 
+
=自NAND下开机 (GTA02)=
+
 
+
[[Category:Flashing Openmoko/zh cn]]
+
[[Category:System Developers/zh cn]]
+

Latest revision as of 09:12, 26 December 2008

  1. REDIRECT Booting from SD/zh cn
Personal tools

NOR in GTA02 history

GTA 02内置了2MB的NOR flash。在DVT4(2008 四月在台北发布)之前,GTA02 NOR 在硬件上并没有做NOR写保护控制。在DVT4之后发布的软件包,及量产的产品,都包含了硬件的NOR写保护功能。你必须使用debug board v3 或之后的版本,来禁止NOR 写保护,之后就可以在GTA02上更新NOR。

DVT4 单元及PVT1组件都会使用 "uImage"做为它的内核影像文件名,而不是使用"uImage.bin" 。你可以在启动画面上找到它的日期,了解你的硬件设备上所使用的版本。

  • 你可以在以下的位置找到启动NOR写入功能的组件:

禁止NOR写保护

历史版本

  • 20080226 初版
  • 20080305 修复DFU,并且删除NOR版本,使用NAND功能
  • 20080312 修复SD卡引导功能 (把内核影像文件名从uImage改为uImage.bin)
  • 20080320 修复u-boot direct drawing 500mA 、智能充电、量产版本。

制作可引导的SD卡(GTA02)

以下为制作可引导的SD卡的操作步骤指引。它使用ubuntu 及一张干净的512MB Sandisk microSD 卡(缺省使用FAT16分区格式):

  • Step 1, 缷载磁盘:
  sudo umount /media/disk-1

接着将磁盘分为二个分区,第一个分区使用vfat,预留8MB空间存放uImage.bin,第二个分区(剩余的磁盘空间)使用ext2格式,用于存放rootfs 及目录使用。二个分区都使用primary partition 类型。

  • Step 2, fdisk:
  sudo fdisk /dev/mmcblk0
  Command (m for help): d
  Selected partition 1
  Command (m for help): n
  Command action
     e   extended
     p   primary partition (1-4)
  p
  Partition number (1-4): 1
  First cylinder (1-983, default 1):
  Using default value 1
  Last cylinder or +size or +sizeM or +sizeK (1-983, default 983): +8M
  Command (m for help): n
  Command action
     e   extended
     p   primary partition (1-4)
  p
  Partition number (1-4): 2
  First cylinder (18-983, default 18):
  Using default value 18
  Last cylinder or +size or +sizeM or +sizeK (18-983, default 983):
  Using default value 983
  Command (m for help): w
  The partition table has been altered!
  Calling ioctl() to re-read partition table.
  Syncing disks.
  • Step 3 格式化:

分别用vfat和ext2格式化上述两个分区

  mkfs -t vfat /dev/mmcblk0p1
  mkfs -t ext2 /dev/mmcblk0p2
  • Step 4 拷贝内核以及rootfs到上述两个分区:

uImage.bin为量产版所使用的内核映像文件,而uImage则为较早期版本所使用的文件(DVT4/PVT1)。必须解压缩rootfs.tar.gz来获得uImage.bin和rootfs。

  tar -zxvf rootfs.tar.gz
  sudo cp -r ./kernel/uImage.bin /media/disk-1
  sudo cp -r ./root_files/. /media/disk-2
  sync
  • Step 5 在Neo的菜单中,选择 boot from SD (在正确的 u-boot_env 内容下)

开机环境 (GTA02)

在GTA02 NAND下有六个分割区。

  • 1. u-boot.bin
  • 2. u-boot_env
  • 3. kernel (uImage.bin)
  • 4. splash.gz (splash screen)
  • 5. Factory (BT/WLAN/Serial...etc)
  • 6. rootfs

预设的GTA02 env 档案最原始的版本(2008/7)可以在下面的地址找到 预设env檔

你可以使用下面的 env.new 档案,在开机画面中加入 boot from sd 功能选项。 u-boot environment.

  • ./dfu-util -a u-boot_env -R -D env.new

自NOR (GTA02)下开机

如果你想要自NOR下开机,并且从SD卡中使用NOR,请使用下列的操作步骤。

  • 按下AUX key
  • 再按住Power,启动GTA02
  • 约一秒后放开AUX

接着,你可以进入预设的NOR开机选单,你可以:

  • 使用NOR开机,使用DFU
  • 使用NOR开机画面自SD卡开机

自NAND下开机 (GTA02)