Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1259753
  • 博文数量: 548
  • 博客积分: 7597
  • 博客等级: 少将
  • 技术积分: 4224
  • 用 户 组: 普通用户
  • 注册时间: 2010-12-15 13:21
个人简介

嵌入式软件工程师&&太极拳

文章分类

全部博文(548)

文章存档

2014年(10)

2013年(76)

2012年(175)

2011年(287)

分类: 嵌入式

2012-04-25 15:09:46

实验目的】
 在FS2410开发板上进行linux-2.6.22.6内核的移植,这个部分完成USB设备驱动的添加,完成相应的功能。
【实验环境】
1、Ubuntu10.10发行版
2、FS2410平台以及开发板中移植好的u-boot-1.3.1 
3、交叉编译器 arm-linux-gnu-gcc (ver:3.4.5)
【实验步骤】
(1) 配置2.6.22.6支持u盘
1.
 SCSI device support  --->
<*>   SCSI disk support
      <*>   SCSI generic support
      <*>   SCSI media changer support
       [*] Probe all LUNs on each SCSI device

   这些配置是对host端和device端的支持.
           2. USB support  ---> 
       <*>   USB Mass Storage support
   这是对U盘的SCSI类型的支持
 
 3. File systems  --->
 Native Language Support  --->  (iso8859-1) Default NLS Option
                      <*>   Codepage 437 (United States, Canada)
                      <*>   Simplified Chinese charset (CP936, GB2312)
                      <*>   NLS ISO 8859-1  (Latin 1; Western European Languages)
   支持相应的语言
(2) 启动开发板
插入U盘[靠近SD卡的USB口],出现一下信息:
[root@192 /]# usb 1-1: new full speed USB device using s3c2410-ohci and address2

usb 1-1: configuration #1 chosen from 1 choice                                

scsi0 : SCSI emulation for USB Mass Storage devices                           

scsi 0:0:0:0: Direct-Access     Netac    OnlyDisk         1.00 PQ: 0 ANSI: 2  

sd 0:0:0:0: [sda] 2039808 512-byte hardware sectors (1044 MB)                 

sd 0:0:0:0: [sda] Write Protect is off                                        

sd 0:0:0:0: [sda] Assuming drive cache: write through                         

sd 0:0:0:0: [sda] 2039808 512-byte hardware sectors (1044 MB)                 

sd 0:0:0:0: [sda] Write Protect is off                                        

sd 0:0:0:0: [sda] Assuming drive cache: write through                         

sda: sda1 (mknod /dev/sda1 b 8 1 ;mount -t vfat /dev/sda1 /tmp)                                                                   
sd 0:0:0:0: [sda] Attached SCSI removable disk                                

sd 0:0:0:0: Attached scsi generic sg0 type 0

(3)验证一下
 # mkdir -p /mnt/udisk
 # mount -t vfat -o codepage=936,iocharset=cp936 /dev/sda1 /mnt/udisk
 #cd /mnt/udisk
 # ls

阅读(892) | 评论(0) | 转发(1) |
给主人留下些什么吧!~~