RFS file system support for linux


From SamyGO
Revision as of 20:31, 10 March 2011 by Arris69 (talk | contribs) (What you do)
Jump to: navigation, search

RFS file system support for linux

File systems are storage formats for data on e.g., a disk or a pendrive. On a linux box, EXT3 (3rd extended file system) is very popular, just as NTFS is for Windows. and FAT12, FAT16 and FAT32 were for DOS and earlier Windows versions.

Samsung TV's have their file systems for user space applications formatted as RFS (Robust File System). RFS is a FAT 16/32 based file system with a sort of journalling system on it. The code to build and use the RFS file system is proprietary and only used in Samsung equipment, such as TV's, BluRay players and cellphones.

What are the possibilities?

Well, Samsung firmware upgrades are delivered as a set of file system images that are flashed over the existing flash file systems, typically in the RFS format. Until now it was not possible to use these images on a desktop or notebook computer, so if you need to change something in the firmware, you would have to use a hex-editor to patch the file system image directly. That is a cumbersome way of doing things, and offers only limited patching possibilities. When you have the code for Samsung's file system, in theory it can be made to work and eventually be used on other equipment than Samsung's.

And that's exactly what happened. Some time ago, Samsung (accidentally?) posted the firmware source code for one of the A-series TV's on their global open source download site, with the code for the rfs.ko kernel module still in it. There's no need to check it out, it's not there any more. arris69 downloaded it, patched it to make it work on x86-based computers and hey presto! a working RFS file system module for desktop use.

Practical use

You can use the RFS file system support for two things:

  1. You can change things in the firmware of your TV a LOT easier than before. Just mount the file system images, change whatever you want, unmount again, repack into the firmware and flash, or, flash the image directly onto your TV using the internal flashing software (using bml.restore bml.dump and the likes).
  2. You can build newer kernels for your TV to add extra functionality and still use the proprietary file systems and firmware images for your TV.

How do I make it work on my computer?

First of all, this method works on Linux only. If you have no (root) access to a Linux box, stop reading, go and do something else, this is not for you. Linux users, read on!

What you need

  1. You will need root access to an intel compatible linux machine. The code has been tested so far on both i386 and x86_64 platforms. Since the code only comprises the file system driver, it will probably work on other platforms as well. ARM and MIPS-based platforms should be no problem, since that's what it is being used for most by Samsung.
  2. The machine needs to be configured for development purposes, i.e., you have to have a working toolchain installed (gcc, binutils and glibc library headers, make, bison and some other development tools).
  3. Basic knowledge of unix (bash) command line interface commands. Typically, tar, ls, cd, rm, ln and some others. If you don't know any of these, try and open a terminal and type man <command name> to get help.
  4. A little experience in kernel configuration and compilation is a plus.
  5. Internet access, but you are probably reading this on the internet, so that's not a problem.

What you do

( This will be automated probably, at least partly)

  • Download a vanilla kernel source from www.kernel.org. (compatible versions will follow later) You will need this to build a new kernel from. Kernel sources as used by popular distro's are heavily patched throughout the source tree, making it hard to patch them without errors, with a single patch, built for a non-patched kernel. If you insist you can try, but you're on your own.
  • Download the RFS patch from (original version from samsung sources?) and save it as <a-path-to/RFS.patch>.
  • Download the RFS fix patch version 1.2.2p1-rc2 or version 1.3.1_b070 prepared for xattr support and save it as <a-path-to/RFS-fix.patch>.
  • Unpack the kernel source. On Debian and Slackware based machines (Debian, Ubuntu, Gentoo, Slackware) this normally is done in /usr/src. On RedHat based machines (Fedora, CentOS, Mandriva, RedHat) the kernel sources typically go in /usr/src/kernels. If you do not want to mess up your standard source tree, any other directory will do just as well.
  • Open a terminal as root and enter the top-level kernel source directory. Patch the kernel by issuing the following command(s):
patch -p1 < <a-path-to/RFS.patch>
patch -p1 < <a-path-to/RFS-fix.patch>
  • Integrate the RFS Configuration in kernels Build-System with following commands:
sed -i -e 's#\(obj-$(CONFIG_JFFS2.*\)#\1\nobj-$(CONFIG_RFS_FS)\t\t+= rfs/#' fs/Makefile
sed -i -e 's#\(source "fs/nls/Kconfig"\)#\1\nsource "fs/rfs/Kconfig"#' fs/Kconfig
  • Configure the kernel by

make menuconfig Here is where a little experience comes in handy. To configure the kernel properly, and as lean as possible, you need to know what exactly the hardware is you are using. If you don't know, you can try and use the configuration for your distro, typically available from the distro kernel source packages. The RFS filesystem configuration has been preset, so it should be OK.

  • Build the kernel and modules:

make (-j<number of cores on your machine + 1> )

  • Install the modules:

make modules_install This builds and installs the kernel modules, including the rfs module.

  • Put the kernel (arch/<architecture>/boot/bzImage) in the directory where it belongs, typically /boot
  • Configure the boot loader to enable booting your freshly built kernel.

In grub: add the lines

title SamyGO
root (hd0,2)
kernel /kernel-with-rfs ro root=/dev/sda5 rhgb quiet
initrd /initrd-image

to /boot/grub/grub.conf. Replace kernel image name, initrd name and root device with the right ones for your system. in LILO: (anyone still using this?) add the lines

image=/boot/kernel-image
label=SamyGO              
root=/dev/sda2

to /etc/lilo.conf, typically at the far end. Again, choose your names for the kernel and root device.
run /sbin/lilo

  • reboot, pick the right kernel to load.
  • login as root, open a shell (terminal) and load the rfs module:

modprobe rfs.ko

  • Try and mount a file system image from Samsung:

mount -t rfs <image_name, e.g. exe.img> /mnt -o loop

  • Test it by making new files, deleting files, editing, linking etc ...
  • All done.

Making new RFS filesystems

So far we only discussed mounting and editing RFS file systems on linux. In another source package issued by Samsung, the code for a set of tools to build and test RFS filesystems was released. This may come in handy if you want to build your own filesystems (of different size, for other Samsung equipment, ...). The code for this tool resides inside 10_LA32C530_X4.zip, in the package vdlinux-mstar-kernel.tgz, in the subdirectory vdlinux-mstar-kernel/RFS_1.3.1_b070-LinuStoreIII_1.2.0_b032FSR_1.2.1p1_b129_RTM_X4/tools/FSTools/
It is available from the open source server at Samsung's. This package both contains the source code and a working i*86 binary of mkrfs. Unpack it, type ./mkrfs -h in its installation dir and you will see the options it has. Like mksquashfs, it generates a filesystem from an existing directory rather than an empty one with a predefined size. Unlike e.g., mksquashfs, you can set the size of the filesystem to be built.


Reference Threads


thnx to Marcel for article
--Arris69