OpenWrt ソフトウェア・フィード

A feed in OpenWrt is a collection of packages which share a common location. Feeds may reside on a remote server, in a version control system, on the local filesystem, or in any other location addressable by a single name (path/URL) over a protocol with a supported feed method.

Feeds are additional predefined package build recipies for OpenWrt Buildroot.

The list of usable feeds is configured from the feeds.conf file (or feeds.conf.default when feeds.conf does not exist). This file contains a list of feeds, one per line, and any number of empty lines. Comments begin with # and extend to the end of a line and are ignored during parsing. Each feed line consists of 3 whitespace-separated components: The feed method, the feed name, and the feed source.

<builroot dir>/feeds.conf.default
src-svn packages svn://svn.openwrt.org/openwrt/packages
src-svn xwrt http://x-wrt.googlecode.com/svn/trunk/package
src-svn luci http://svn.luci.subsignal.org/luci/trunk/contrib/package
#src-svn phone svn://svn.openwrt.org/openwrt/feeds/phone
#src-svn efl svn://svn.openwrt.org/openwrt/feeds/efl
#src-svn desktop svn://svn.openwrt.org/openwrt/feeds/desktop
#src-svn xfce svn://svn.openwrt.org/openwrt/feeds/xfce
#src-svn lxde svn://svn.openwrt.org/openwrt/feeds/lxde
#src-link custom /usr/src/openwrt/custom-feed

As of this writing, the following methods are supported:

Method Function
src-bzr Data is downloaded from the source path/URL using bzr
src-cpy Data is copied from the source path
src-darcs Data is downloaded from the source path/URL using darcs
src-git Data is downloaded from the source path/URL using git. 1)
src-hg Data is downloaded from the source path/URL using hg
src-link A symlink to the source path is created
src-svn Data is downloaded from the source path/URL using svn

Feed names are used to identify feeds and serve as the basis for several file and directory names that are created to hold information about the feeds. The feed source is the location from which the feed data is downloaded.

For the methods listed above which rely on version control systems that support a “limited history” option (such as --depth for git and --lightweight for bzr) the smallest available history is downloaded. This is a good default, but developers who are actively committing to a feed and/or using the commit history may want to change this behavior. This can be done by editing scripts/feeds appropriately or by checking out the feed without using scripts/feeds.

Feeds can be utilized through the scripts/feeds script. A list of the available commands is generated by invoking scripts/feeds without any arguments. Most commands require the feed information to be available locally, so running update first is usually necessary. In the following discussion the term “applicable packages” usually refers to the package names given on the command line or all packages in a feed when the -a option is used.

Clean

The clean command removes the locally stored feed data, including the feed indexes and data for all packages in the feed (but not the symlinks created by the install command, which will be dangling until the feeds are re-downloaded by the update command). This is done by removing the feeds directory and all subdirectories.

Install

The install command installs the applicable packages and any packages on which the applicable packages depend (both direct dependencies and build dependencies). The installation process consists of creating a symbolic link from packages/feeds/$feed_name/$package_name to feeds/$feed_name/$package_name so that the package will be included in the configuration process when the directory hierarchy under packages is searched.

Command Description
./scripts/feeds install -a Install all packages (not recommended, only install the packages you need)
./scripts/feeds install luci Install only the package LuCI
./scripts/feeds install -a -p luci Install the LuCI WebUI
Please note that this replaces the old method of creating symlinks, which can be still found on-line in many old forum and user-group entries

List

The list command reads and displays the list of packages in each feed from the index file for the applicable feeds. The index file is stored in the feeds directory with the name of the feed suffixed with .index. The file is generated by the update command.

The search command reads through the feed metadata and lists packages which match the given search criteria.

Uninstall

The uninstall command does the opposite of the install command (although it does not address dependent packages in any way). It simply removes any symlinks to the package from the subdirectories of packages/feeds.

Update

When scripts/feeds update is invoked, each of the applicable feeds are downloaded from their source location into a subdirectory of feeds with the feed name. It then parses the package information from the feed into an index file used by the list and search commands.

Command Description
./scripts/feeds update packages luci Checkout the packages and luci feeds

Note that update also stores the configured location of the feed in feeds/$feed_name.tmp/location such that changes to the configuration can be detected and handled appropriately.

After retrieval the downloaded packages need to be “installed”. Only after installation will they be available in the configuration interface!

Ok, you've developed your package, and now you want to use it via make menuconfig, OR you are developing a package and you want to test it in a build before you try to get it included in OpenWrt.

The solution is a custom feed. You can either create an entirely new feed, or use a modified version of one of the standard ones.

Adding your package to an existing feed

For this example we assume that your are in /home/user/openwrt as your base directory.

  1. You create your current project dir project.
  1. Then while in /home/user/openwrt/project
  1. svn co svn:svn.openwrt.org/openwrt/trunk openwrt (for the OpenWRT base system) - svn co svn:svn.openwrt.org/openwrt/packages packages (for the packages feed)
  1. Add your package in the appropriate subdirectory under /home/user/openwrt/project/packages

Creating your own feed

  1. Create your project dir and get trunk, as above
  2. Create your package dir and copy your package into it (e.g. cp packagedir /home/user/openwrt/project/customfeed/), so that your package is under (in this example) /home/user/openwrt/project/customfeed/packagedir
  1. Edit your feeds.conf (i.e. /home/user/openwrt/project/openwrt/feeds.conf)
  2. Add a new line to access the feed (and in the case of adding to the packages feed comment out the normal packages feed.)
  3. e.g.
#srv-svn packages svn://svn.openwrt.org/openwrt/packages src-link customfeed /home/user/openwrt/project/packages

or in the case of the second example:

src-link customfeed /home/user/openwrt/project/customfeed
  1. Update the feed: from the <buildroot dir> (e.g. /home/user/openwrt/project/openwrt) do:
    ./scripts/feeds update customfeed
  2. And then install it
    ./scripts/feeds install -p customfeed
  3. Now your package(s) should be available when you do
    make menuconfig

The downloaded sources (referenced in package Makefiles) are not there... The downloads go first to <buildroot>/dl as gzipped .gz files. And there they are stored and then they get unzipped to /build_dir, I think (or to staging_dir ?) See e.g. <buildroot>/build_dir/target-mips_r2_uClibc-0.9.32 and below it you will find subdirectories for each package's sources.


1)
If the source contains a semicolon, the portion before the semicolon is treated as a URL and the portion after as a branch name.
This website uses cookies. By using the website, you agree with storing cookies on your computer. Also you acknowledge that you have read and understand our Privacy Policy. If you do not agree leave the website.More information about cookies
  • Last modified: 2018/02/17 17:27
  • by 77.141.120.73