Welcome![Sign In][Sign Up]
Location:
Search - FileSystem

Search list

[Other resourcemp3play.tar

Description: Application (fix point) for playing MP3 data on embedded systems. mp3play is designed to be able to play mp3 data files within the local filesystem (which can be a network filesystem), or fetch files to play via http over a network. For the http case the address can specify a streaming MP3 server.
Platform: | Size: 214094 | Author: gloryn | Hits:

[Multimedia programiMagic_2006_0428_v098r23

Description: 手持式多媒体系统整体开发主案,含Audio,Camer,Usb,Storage,FileSystem,Os,GraphicI/mage Process, Video, 等各模块全部SOURCE CODE。
Platform: | Size: 2885638 | Author: along | Hits:

[OS programFileSystem

Description: 简单模拟二级文件系统,c++开发,我们的课程设计
Platform: | Size: 121859 | Author: bryan sun | Hits:

[File OperateFAT_format

Description: fat filesystem format discription
Platform: | Size: 210845 | Author: 李文华 | Hits:

[Other resourceFileSystem

Description: FAT12/FAT16/FAT32/NTFS specification
Platform: | Size: 2202622 | Author: Tony | Hits:

[OS programfilesystem

Description: 用c#实现的在内存中模拟的简易文件系统,整个文件系统可保存至硬盘。系统设计参照fat格式。文件系统提供的操作: a) 格式化 b) 创建子目录 c) 删除子目录 d) 显示目录 e) 更改当前目录 f) 创建文件 g) 打开文件 h) 关闭文件 i) 写文件 j) 读文件 k) 删除文件
Platform: | Size: 809544 | Author: twofox | Hits:

[WEB CodeFileSystem

Description: CSharp语言的文件管理系统,B/S结构,使用VS2005直接打开工程文件
Platform: | Size: 241361 | Author: wkcode | Hits:

[OS DevelopfileSystem

Description: 文件系统,9600,fat16,fat32 ,还不错哦
Platform: | Size: 58128 | Author: 刘苑新 | Hits:

[FlashMXMicrochipMDDFileSystem1.1.2

Description: Microchip MDD filesystem 1.1.2 Free filesystem from Microchip for accessing any flash filesystem storage device
Platform: | Size: 1122756 | Author: pablo | Hits:

[Other resourceyaffs-src.tar

Description: YAFFS A NAND-flash filesystem,多平台嵌入式linux源代码-YAFFS A NAND-flash filesystem, multi-platform embedded Linux source code
Platform: | Size: 151011 | Author: 张强 | Hits:

[Embeded Linuxsmp86xx_rootfs.tar.bz2

Description:

 sigma smp8634/8635 toolchain rootfs building source.

=================

Readme.txt

=================

 

This is the Sigma Designs customization of the root file system for the

SMP86xx family of chips.

 

This package is of course heavily depending on the toolchain and kernel

packages.

 

Quick HOW-TO

============

a) You need to have a working toolchain package. Once you have built your 

   toolchain, be sure to source toolchain-path.env. This is required for you to

   be able to build the rootfs package.

b) Untar the rootfs package.

c) First, configure your root file system: 'make menuconfig'. All the options 

   in the configuration menus have detailed help. Once you are satisfied with

   your choice of options, exit and save the configuration.

d) If you are using the toolchain composed of gcc 3.4.2, binutils 2.15.91.0.2,

   and uClibc 0.9.27 (defined in the toolchain package) then you must select

   Busybox 1.00 from the 'Package Selection for the target --->' menu.

   If on the other hand you are using the toolchain composed of gcc 4.0.4,

   binutils 2.17, and uClibc 0.9.28.3 then you must select Busybox 1.5 from

   the 'Package Selection for the target --->' menu.

e) If you chose to customize your root file system (option 'customize' in

   submenu 'Package Selection for the target'), be sure to prepare your custom

   files now.

f) Run 'make' to produce your root file system.

 

IMPORTANT NOTE: as of this release, the only supported option in the 'Target 

Options' menu is 'cramfs root filesystem for the target device' (with all its

suboptions). Any other option is currently unsupported and some are known to

not work.

 

Once you are through with step e), your root file system is available in the

main directory of the package as 'root_fs_mipsel.cramfs'.

 

Note about the integration with the toolchain and the kernel source packages

============================================================================

The rootfs package is now integrated with the toolchain package and the 

kernel source package and is able to interact with them in the following

ways:

 

 a) it can grab the necessary runtime libraries from the toolchain package.

 b) it can receive the kernel modules and support files from the kernel source

    package.

 c) the kernel source package can use the produced rootfs image for its initial

    RAM disk.

 

For interaction a) to take place, the SMP86XX_TOOLCHAIN_PATH environment 

variable must be defined and it must point to the main directory of the 

produced toolchain. The easiest way to achieve that is by sourcing the

'toolchain-path.env' environment file after it is produced at the end of the

toolchain production.

 

Note that defining SMP86XX_TOOLCHAIN_PATH is not optional. The build will not

go through unless the environment variable is defined and points to a correct

location. This is because, even if the build went through, the resulting root

file system would be unusable as it would not provide *any* run time library.

 

For interactions b) and c) to take place, the SMP86XX_ROOTFS_PATH environment

variable must be defined and must point to the main directory of the rootfs

package. The easiest way to achieve that is by sourcing the 'rootfs-path.env'

environment file after it is produced, right after your run 'make' or 

'make menuconfig' for the first time.

 

When SMP86XX_ROOTFS_PATH is defined and points to a valid location, the kernel

source package is able to:

 

 b) install its modules to the correct location under the customization 

    directory ('package/customize/source') in the rootfs package. In order to

    then make sure the modules end up in the produced rootfs image, you must

    select the 'customize' option under the 'Package Selection for the target'

    menu in 'make menuconfig'.

 c) grab the produced rootfs image (root_fs_mipsel.cramfs) and use it for its

    initial RAM disk.

 

Thus, in order to produce a rootfs holding the kernel modules and use it as the

kernel initial RAM disk, you need to go through the following steps in order

(note: this is convoluted):

 1) optionally build the toolchain (or use an existing one, more recent than

    2.6.90.0)

 2) source toolchain-path.env in the toolchain package directory

 3) configure the rootfs package with the 'customize' option on in the

    'Package Selection for the target' menu

 4) source 'rootfs-path.env' in the rootfs package directory

 5) configure the kernel, review what is configured as modules, 'make dep'

 6) 'make modules' in the kernel source directory

 7) the 'modules_install' target for the kernel needs that the system map be

    already produced. In order to achieve that, build a first version of the

    kernel: 'make vmlinux'

 8) 'make modules_install' in the kernel source directory. The modules are now

    installed in the rootfs package customization directory.

 9) 'make' in the rootfs package directory. You have now produced a rootfs 

    image holding the kernel modules.

10) 'make' in the kernel source directory. You have now produced a linux ZBF

    image with an initrd holding the kernel modules.

    

Coming features

===============

N/A

 

Troubleshooting

===============

a) when building the cramfs utility tool, the compiler complains that it can't

   find 'zlib.h' or '-lz'.

 

   You need to have the development version of zlib installed on your system.

   How to do that depends on your distribution.

 

 


Platform: | Size: 234248 | Author: mattli001 | Hits:

[ARM-PowerPC-ColdFire-MIPSandroid_2.1filesystem

Description: s3c2440用android filesystem
Platform: | Size: 40024170 | Author: jeerjay | Hits:

[ARM-PowerPC-ColdFire-MIPSandroid_1.5filesystem

Description: s3c2440用filesystem
Platform: | Size: 34470358 | Author: jeerjay | Hits:

[OS program文件系统监视器

Description: 一个不错的-A good
Platform: | Size: 21504 | Author: 李丐 | Hits:

[Otheranthill-1[1].6.1.59.tar

Description: Anthill是一个确保受控建造过程和促进在组织内部共享知识的工具。Anthill在每一次建造之前从项目最新版本的源文件库中借出文件,并在每一次建造之后用一个唯一的版本号标记源文件库。它支持的库适配器有:CVS (Concurrent Versions System), Visual Source Safe, Perforce, PVCS, StarTeam, MKSIntegrity, 和 FileSystem. 来源:http://freshmeat.net/projects/ant8/?topic_id=45%2C822%2C52%2C46%2C861 -Anthill is guarantees is controlled the construction process and the promotion in the organization interior sharing knowledge tool. Anthill before each construction loans the document from in the project newest edition source document storehouse, and after each construction marks the source document storehouse with an only edition number. It supports the storehouse adapter includes: CVS (Concurrent Versions System), Visual Source Safe, Perforce, PVCS, StarTeam, MKSIntegrity, with FileSystem. origin: Http://freshmeat.net/projects/ant8/? Topic_id=45,822,52,46,861
Platform: | Size: 4431872 | Author: 胡晓 | Hits:

[Linux-Unixe2fsprogs-1.35.tar

Description: The Ext2 Filesystem Utilities (e2fsprogs) contain all of the standard utilities for creating, fixing, configuring , and debugging ext2 filesystems.
Platform: | Size: 3151872 | Author: | Hits:

[SCMFirmware_Keil

Description: sl811usb芯片与51的文件系统-a filesystem about USB chip sl811 and 51
Platform: | Size: 306176 | Author: 方锐 | Hits:

[JSP/JavaCommandPattern-FileSystem

Description: 用command模式写的一个简单的java 程序,实现cd和ls两个命令-use the command pattern was a simple java programs to achieve cd and ls two orders
Platform: | Size: 11264 | Author: 林荣 | Hits:

[Embeded-SCM Developyaffs2

Description: YAFFS的升级版本YAFFS2,很好的支持NANDFlash的文件系统-YAFFS updates YAFFS2 good support NANDFlash file system
Platform: | Size: 81920 | Author: 李翔 | Hits:

[JSP/Javajames-with-phoenix-2.2.0-src

Description: java 开发的邮件服务器平台。支持以下协议。 协议可以修改为自己的专门标识,这个版本绝对能用,我自己的邮件服务器就是使用这个开源项目,修改后架设的,据说21cn也是用这个引擎开发的邮件系统。SMTP转发的时候需要二次开发。 Item Status Since First released SMTP server Stable 1.0 0.95 Mailet Engine Stable 1.2 0.95 FileSystem mailboxes/spool Stable 1.2 1.0 RDBMS mailboxes/spool Stable 1.2 1.2 POP3 server Stable 1.1 1.0 RDBMS - Users Stable 1.2.1 1.2.1 LDAP Support - Users Experimental 1.2 1.2 TLS Support - POP3 Experimental 1.2 1.2 Remote Manager Stable 1.0 1.0 TLS Support - Remote Manager Stable 1.2 1.2 NNTP server Experimental 1.2 1.2 FetchPOP Experimental 2.1 2.1-mail server platform. Support for the agreement. The agreement can be amended for its own specific logo, this version definitely can use that my own mail server is the use of the open-source projects, the revised set up, and is said to USA also using this engine developed mail system. SMTP forward when needed secondary development. Item Status Since First released SMTP server Stable Mailet Engine 1.0 0.95 1.2 0.95 Stable FileSystem mailboxes/spool Stable 1.2 1.0 RDBMS mailboxes/spool 1.2 1.2 Stable Stable a POP3 server. a 1.0 RDBMS-Users Stable 1.2.1 1.2.1 LDAP Support- Users Experimental TLS Support 1.2 1.2-POP3 Experimental Remote Manager 1.2 1.2 1.0 1.0 TLS Stable Support- Remote Manager Stable 1.2 1.2 NNTP server Experimental FetchPOP Experimental 1.2 1.2 2.1 2.1
Platform: | Size: 8729600 | Author: | Hits:
« 1 2 3 4 5 6 7 89 10 11 12 13 ... 40 »

CodeBus www.codebus.net