Samsung S3 C6410 user manual

User manual for the device Samsung S3 C6410

Device: Samsung S3 C6410
Category: Computer Accessories
Manufacturer: Samsung
Size: 0.48 MB
Added : 12/21/2013
Number of pages: 14
Print the manual

Download

How to use this site?

Our goal is to provide you with a quick access to the content of the user manual for Samsung S3 C6410. Using the online preview, you can quickly view the contents and go to the page where you will find the solution to your problem with Samsung S3 C6410.

For your convenience

If looking through the Samsung S3 C6410 user manual directly on this website is not convenient for you, there are two possible solutions:

  • Full Screen Viewing - to easily view the user manual (without downloading it to your computer), you can use full-screen viewing mode. To start viewing the user manual Samsung S3 C6410 on full screen, use the button Fullscreen.
  • Downloading to your computer - You can also download the user manual Samsung S3 C6410 to your computer and keep it in your files. However, if you do not want to take up too much of your disk space, you can always download it in the future from ManualsBase.
Samsung S3 C6410 User manual - Online PDF
Advertisement
« Page 1 of 14 »
Advertisement
Print version

Many people prefer to read the documents not on the screen, but in the printed version. The option to print the manual has also been provided, and you can use it by clicking the link above - Print the manual. You do not have to print the entire manual Samsung S3 C6410 but the selected pages only. paper.

Summaries

Below you will find previews of the content of the user manuals presented on the following pages to Samsung S3 C6410. If you want to quickly view the content of pages found on the following pages of the manual, you can use them.

Abstracts of contents
Summary of the content on the page No. 1





Installation Manual
for UBI



S3C6410
May 09, 2008
(Preliminary) REV 1.00

1

Summary of the content on the page No. 2

S3C6410 INSTALLATION MANUAL UBI(UNSORTED BLOCK IMAGE) V1.0 Important Notice The information in this publication has been carefully "Typical" parameters can and do vary in different checked and is believed to be entirely accurate at applications. All operating parameters, including the time of publication. Samsung assumes no "Typicals" must be validated for each customer responsibility, however, for possible errors or application by the customer's technical experts. omissions, or for any co

Summary of the content on the page No. 3

S3C6410 INSTALLATION MANUAL UBI(UNSORTED BLOCK IMAGES) V1.0 Revision History Revision No Description of Change Refer to Author(s) Date 1.00 - Master Copy - Jongpill Lee May 09, 2008 NOTE: Revised parts are written in blue. Preliminary product information describe products that are in development, for which full characterization data and associated errata are not yet available. 3 Specifications and information herein are subject to change without notice.

Summary of the content on the page No. 4

S3C6410 INSTALLATION MANUAL UBI(UNSORTED BLOCK IMAGES) V1.0 CONTENTS 1 INTRODUCTION................................................................................................................................... 6 1.1 PURPOSE ......................................................................................................................................................................6 1.2 OVERVIEW ...................................................................................

Summary of the content on the page No. 5

S3C6410 INSTALLATION MANUAL UBI(UNSORTED BLOCK IMAGES) V1.0 Figures FIGURE 1 UBI/MTD INTEGRATION ....................................................................................................................... 6 FIGURE 2 DEVICE DRIVERS ................................................................................................................................... 8 FIGURE 3 MEMORY TECHNOLOGY DEVICES .................................................................................

Summary of the content on the page No. 6

S3C6410 INSTALLATION MANUAL UBI(UNSORTED BLOCK IMAGES) V1.0 1 Introduction 1.1 Purpose Ubi is general purpose flash management layer which has similar functionality as the Logical Volume Manager. The basic idea is that the UBI layer provides the management for multiple logical volumes, which can contain either static data or dynamic contents e.g. file systems. This guide will explain the initial steps for Installing UBI(Unsorted Block Image) and how to compile Linux Kernel. 1.2 Over

Summary of the content on the page No. 7

S3C6410 INSTALLATION MANUAL UBI(UNSORTED BLOCK IMAGES) V1.0 2 Kernel Compilation 2.1 Root file System Make sure you have 2.6 compliant versions of insmod, rmmod, and lsmod. At least you have 2.6 compliant versions of insmod. 2.2 Kernel Compile In this chapter, you will understand the initial steps for Installing S3C BSP on Linux operating system. Kernel source is compressed by the name of “s3c-linux-2.6.21.tar.bz2”. Extract this bz2 file by executing the following command. After ex

Summary of the content on the page No. 8

S3C6410 INSTALLATION MANUAL UBI(UNSORTED BLOCK IMAGES) V1.0 Select ‘Device Drivers’ from the ‘Linux Kernel Configuration’. FIGURE 2 Device Drivers Select ‘Memory Technology Devices(MTD)’ FIGURE 3 Memory Technology Devices Preliminary product information describe products that are in development, for which full characterization data and associated errata are not yet available. 8 Specifications and information herein are subject to change without notice.

Summary of the content on the page No. 9

S3C6410 INSTALLATION MANUAL UBI(UNSORTED BLOCK IMAGES) V1.0 Select ‘UBI – Unsorted block images’ FIGURE 4 UBI – Unsorted Block Images Select ‘Enable UBI’ to Module Type FIGURE 5 Enable UBI Preliminary product information describe products that are in development, for which full characterization data and associated errata are not yet available. 9 Specifications and information herein are subject to change without notice.

Summary of the content on the page No. 10

S3C6410 INSTALLATION MANUAL UBI(UNSORTED BLOCK IMAGES) V1.0 Select “Emulate MTD devices” FIGURE 6 Select “Emulate MTD Devices” Finally select ‘Exit’ and then ‘Yes’ to save your new kernel configuration. FIGURE 7 Saving New Kernel configuration Preliminary product information describe products that are in development, for which full characterization data and associated errata are not yet available. 10 Specifications and information herein are subject to change without notice.

Summary of the content on the page No. 11

S3C6410 INSTALLATION MANUAL UBI(UNSORTED BLOCK IMAGES) V1.0 Execute the following commands on your host PC, the Kernel image will be created in “s3c-linux- 2.6.21/arch/arm/boot/” directory by the name of “zImage”. Also, UBI Module will be created in “s3c-linux-2.6.21/drivers/mtd/ubi/”directory by the name of “ubi.ko”. [root@localhost s3c-linux-2.6.21]# make Preliminary product information describe products that are in development, for which full characterization data and associated e

Summary of the content on the page No. 12

S3C6410 INSTALLATION MANUAL UBI(UNSORTED BLOCK IMAGES) V1.0 3 Test In this Chapter, you will understand how to test UBI in you system. 3.1 Download “ubi.ko” First, you have to download “ubi.ko” device module file that is created by make command. You can this device module in “linux/drivers/mtd/ubi/ubi.ko”. 3.2 Load UBI Module Next, Insert UBI Module(ubi.ko) which is download from your host with insmod command. Input command as following. [root@Samsung tmp]# insmod u

Summary of the content on the page No. 13

S3C6410 INSTALLATION MANUAL UBI(UNSORTED BLOCK IMAGES) V1.0 3.3 Create UBI Volume Now, Make a UBI Volume in MTD partition. First of all, make “sysfs” directory and mount sysfs to sysfs directory. [root@Samsung tmp]# mount sysfs sysfs ./sysfs [root@Samsung tmp]# mount -t sysfs sysfs ./sysfs You need ubimkvol application which is to make ubi volume. Download ubimkvol application. And Excute ubimkvol as following command. [root@Samsung tmp]# ./ubimkvol -s 10245780 -N Storag

Summary of the content on the page No. 14

S3C6410 INSTALLATION MANUAL UBI(UNSORTED BLOCK IMAGES) V1.0 3.4 Mount jffs2 Finally, you want to read and write in UBI Volume, system is mounted temporary directory to /dev/mtdblock4. Preliminary product information describe products that are in development, for which full characterization data and associated errata are not yet available. 14 Specifications and information herein are subject to change without notice.


Alternative user manuals
# User manual Category Download
1 Samsung ES55 User manual Computer Accessories 8
2 Samsung Galaxy Note S-Pen Manual ET-PN510SWEGUJ User manual Computer Accessories 26
3 Samsung Skype TV Camera VGSTC3000ZA User manual Computer Accessories 67
4 Samsung WB500 User manual Computer Accessories 13
5 Samsung SL720 User manual Computer Accessories 7
6 Samsung ST500 User manual Computer Accessories 105
7 Samsung ST50 User manual Computer Accessories 3
8 Samsung QUICK START MANUAL PL70 User manual Computer Accessories 33
9 Samsung ECTL320BBPUS User manual Computer Accessories 0
10 Samsung 1H 2011 User manual Computer Accessories 0
11 Samsung TL320 User manual Computer Accessories 0
12 Sony VGC-RB50(G) User manual Computer Accessories 1
13 Sony Movie Studio HD Platinum Suite 11 MSPSMS11000 User manual Computer Accessories 177
14 Sony Hi-MD Walkman MCMD-R1 User manual Computer Accessories 7
15 Sony Sound Forge V.10.0 Pro SF-10000 User manual Computer Accessories 435
16 Sony Rechargable Battery Pack VGP-BPSC31 User manual Computer Accessories 23