Patrick Williams | b48b7b4 | 2016-08-17 15:04:38 -0500 | [diff] [blame] | 1 | This README file contains information on the contents of the |
| 2 | filesystems layer. |
| 3 | |
| 4 | Please see the corresponding sections below for details. |
| 5 | |
| 6 | |
| 7 | Dependencies |
| 8 | ============ |
| 9 | |
| 10 | This layer depends on: |
| 11 | |
| 12 | URI: git://git.openembedded.org/bitbake |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 13 | branch: master |
Patrick Williams | b48b7b4 | 2016-08-17 15:04:38 -0500 | [diff] [blame] | 14 | |
| 15 | URI: git://git.openembedded.org/openembedded-core |
| 16 | layers: meta |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 17 | branch: master |
Patrick Williams | b48b7b4 | 2016-08-17 15:04:38 -0500 | [diff] [blame] | 18 | |
| 19 | URI: git://git.openembedded.org/meta-openembedded |
| 20 | layers: meta-oe |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 21 | branch: master |
Patrick Williams | b48b7b4 | 2016-08-17 15:04:38 -0500 | [diff] [blame] | 22 | |
| 23 | Patches |
| 24 | ======= |
| 25 | |
| 26 | Please submit any patches against the filesystems layer to the |
| 27 | OpenEmbedded development mailing list (openembedded-devel@lists.openembedded.org) |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 28 | with '[meta-filesystems]' in the subject. |
Patrick Williams | b48b7b4 | 2016-08-17 15:04:38 -0500 | [diff] [blame] | 29 | |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 30 | Layer maintainer: Armin Kuster <akuster808@gmail.com> |
Patrick Williams | b48b7b4 | 2016-08-17 15:04:38 -0500 | [diff] [blame] | 31 | |
| 32 | When sending single patches, please use something like: |
| 33 | |
| 34 | git send-email -1 -M \ |
| 35 | --to openembedded-devel@lists.openembedded.org \ |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 36 | --subject-prefix=meta-filesystems][PATCH |
Patrick Williams | b48b7b4 | 2016-08-17 15:04:38 -0500 | [diff] [blame] | 37 | |
Patrick Williams | b48b7b4 | 2016-08-17 15:04:38 -0500 | [diff] [blame] | 38 | |
| 39 | Table of Contents |
| 40 | ================= |
| 41 | |
| 42 | I. Adding the filesystems layer to your build |
| 43 | II. Misc |
| 44 | |
| 45 | |
| 46 | I. Adding the filesystems layer to your build |
| 47 | ================================================= |
| 48 | |
| 49 | In order to use this layer, you need to make the build system aware of |
| 50 | it. |
| 51 | |
| 52 | Assuming the filesystems layer exists at the top-level of your |
| 53 | yocto build tree, you can add it to the build system by adding the |
| 54 | location of the filesystems layer to bblayers.conf, along with any |
| 55 | other layers needed. e.g.: |
| 56 | |
| 57 | BBLAYERS ?= " \ |
| 58 | /path/to/yocto/meta \ |
| 59 | /path/to/yocto/meta-oe \ |
| 60 | /path/to/yocto/meta-filesystems \ |
| 61 | " |
| 62 | |
| 63 | |
| 64 | II. Misc |
| 65 | ======== |
| 66 | |
| 67 | --- physfs --- |
| 68 | A library to provide abstract access to various archives |
| 69 | |
| 70 | --- fuse --- |
| 71 | Filesystem in Userspace (FUSE) is a simple interface for userspace programs |
| 72 | to export a virtual filesystem to the Linux kernel. |
| 73 | |
| 74 | --- ifuse --- |
| 75 | A fuse filesystem to access the contents of an iPhone or iPod Touch |
| 76 | |
| 77 | --- sshfs-fuse --- |
| 78 | A filesystem client based on the SSH File Transfer Protocol |
| 79 | |
| 80 | --- owfs --- |
| 81 | An easy way to use the 1-Wire file system |
| 82 | |
| 83 | --- ntfs-3g-ntfsprogs --- |
| 84 | The ntfs-3g is a freely available read/write NTFS driver for Linux and |
| 85 | ntfsprogs includes utilities for doing all required tasks to NTFS partitions. |
| 86 | |
| 87 | --- cramfs --- |
| 88 | Builds cramfs filesystems for embedded systems |
| 89 | |
| 90 | --- smbnetfs --- |
| 91 | SMBNetFS is a Linux/FreeBSD filesystem that allow you to use samba/microsoft |
| 92 | network in the same manner as the network neighborhood in Microsoft Windows. |
| 93 | |
| 94 | --- fuse-exfat --- |
| 95 | A read and write exFAT driver for FUSE |
| 96 | |
| 97 | --- exfat-utils --- |
| 98 | Utilities to create, check, label and dump exFAT filesystem |
| 99 | |
| 100 | --- f2fs-tools --- |
| 101 | Tools needed for creating and managing f2fs partitions |
| 102 | |
| 103 | --- xfsprogs --- |
| 104 | It provides XFS filesystem utilities. |
| 105 | |