您的位置:网站首页 > 电器维修资料网 > 正文 >
Windows CE系统基于HIVE的注册表的在线修改和保存
来源: 日期:2013-12-12 11:15:11 人气:标签:
1、 windows ce注册表简介:
与其他桌面版本windows一样,windows ce也使用注册表(registry)来保存应用程序、驱动程序和用户的设定以及其他一些配置信息。 windows ce注册表也采用树形结构来管理配置信息。
windows ce支持四个根键,描述如下:
键名描述
hkey_local_machine 硬件和驱动配置数据
hkey_current_user 用户配置数据
hkey_classes_root ole 文件类型匹配配置数据
hkey_users 适用于所有用户的数据
2、 windows ce注册表的类型和加载过程
由于嵌入式系统的特点,一些嵌入式设备是没有外部存存储设备。因此windows ce的注册表提供了两种实现方式:基于ram的注册表(ram- based registry)和基于hive的注册表(hive-based registry)。我们可以选择在windows ce中使用任何一种注册表,通常在我们的arm嵌入式系统中会选择flash作为外部存储设备,所以我们选择基于hive的注册表类型。下面我们分析一下windows ce注册表的加载过程:
图2-1
nk.exe执行,启动filesys.exe。
filesys.exe加载引导hive,此时引导hive位于nk.bin解压之后的文件中。
filesys.exe启动device.exe,之后处于等待状态,等待device.exe将包含系统hive的文件系统和存储设备的驱动程序加载完毕。而这个文件系统和存储设备的驱动程序存在于引导hive中。device.exe加载上述所说的文件系统驱动程序和存储设备驱动程序,使之开始工作。之后device.exe处于等待状态。filesys.exe被唤醒,加载并且安装系统hive。之后filesys.exe处于等待状态。nk.exe按照系统hive的信息开始执行初始化工作。其中包括加载驱动程序和启动一些应用程序。其中加载驱动程序一般由device.exe执行,而启动应用程序由filesys.exe执行。这时device.exe和filesys.exe已经被唤醒。
3 、设置基于hive的注册表
在pb中加入"hive-based registry",实验平台:cpu:s3c2410;外部存储设备(flash)k9f1208uom 打开%bsp%/files/platform.reg,找到如下信息:
; hive boot section
[hkey_local_machineinitbootvars]
"systemhive"="system.hv"
; "profiledir"="documents and settings"
"start devmgr"=dword:1
"registryflags"=dword:1
[hkey_local_machineinitbootvars]
"defaultuser"="default" "systemhive"的值为系统hive文件的路径。"start devmgr"是一个布尔值,指示是否开始就执行设备管理器device.exe,只有想把系统hive存储在对象存储中才在此设置为0,所以这里我们要设置为1。可以在上述的注册表位置下输入"defaultuser"="",指定默认的用户名。如果是单用户系统,可以不设置在“; hive boot section”和“; end hive boot section”之间的所有驱动程序的注册表信息中都加入下列一个标志:
"flags"=dword:1000
这个标志是一个位掩码,它可以和其它已经存在的"flags"或运算。值1000表示此驱动程序只加载一次,这样device.exe就不会把当前驱动程序加载两次了。
保证将包含系统hive的文件系统驱动程序的注册表信息和存储设备的驱动程序的注册表信息被包含在“; hive boot section”和“; end hive boot section”之间,在这两个语句之间的注册表数据全部属于引导hive。
[hkey_local_machinesystemstoragemanagerautoloadflashdrv]
"driverpath"="drivers\blockdevice\flashdrv"
"loadflags"=dword:1
"mountflags"=dword:11
"bootphase"=dword:0
"flags"=dword:1000
[hkey_local_machinedriversblockdeviceflashdrv]
"prefix"="dsk"
"dll"="flashdrv.dll" //调用flash驱动
"order"=dword:0
"ioctl"=dword:4
"profile"="flashdrv"
"friendlyname"="ms flash driver"
"mountflags"=dword:11
"bootphase"=dword:0
"flags"=dword:1000
; bind binfs to the block driver
[hkey_local_machinesystemstoragemanagerprofilesflashdrv]
"defaultfilesystem"="binfs" //建立binfs文件系统
"partitiondriver"="mspart.dll"
"automount"=dword:1
"autopart"=dword:1
"mountflags"=dword:2
"folder"="myflashdisk" //实现可以读写的文件夹
"name"="microsoft flash disk"
"bootphase"=dword:0
"flags"=dword:1000
上面的信息添加到platform.reg的“hive boot section”和“end hive boot section”之间, 其中"folder"="myflashdisk"文件实现可以读写文件目录myflashdisk
注册表信息被保存到此文件夹,系统冷启动后会到此文件夹下读取上次用户基于注册表的设置。
编者注:源码请访问www.bluemcu.com
结语:
本文讨论了windows ce基于hive的注册表的在线修改和保存,分析了windows ce注册表的加载过程,完善了嵌入式系统实际应用中的问题,使得目前的windows ce运行版本更加接近与桌面版windows系统。
【看看这篇文章在百度的收录情况】
相关文章
- 上一篇: 超声波距离传感器设计原理性能指标
- 下一篇: 一种新的通用的SPI 总线的FPGA 实现方法