build: allow openwrt.git packages to be replaced by feeds
authorJohn Crispin <john@openwrt.org>
Thu, 22 Jan 2015 09:35:40 +0000 (09:35 +0000)
committerJohn Crispin <john@openwrt.org>
Thu, 22 Jan 2015 09:35:40 +0000 (09:35 +0000)
commit6e30e20906ccbcf56285c0d768163b39e3563a6f
treefe04e7ef788200bc3981b7aa34e504bd5742e216
parent2d13b0ecab66060a0388cf3efc207bf6a8d72de5
build: allow openwrt.git packages to be replaced by feeds

Currently, replacing a package available in openwrt.git requires
modifications in openwrt.git, or requires duplicating the package in a
feed but with a different name, which causes all kind of problems
related to dependencies (all packages selecting it would have to be
modified accordingly to select the new package).

With this change, if a package with the same name is present both in
feeds/ and package/ folders, the one in feeds/ can override the one
in package/, both in the menuconfig and during the build, by passing the
"-f" option to "./scripts/feeds install"

This mechanism is particularly useful for vendor tree, or in general for
application which needs to replace one particular package which exists
within openwrt.git by a custom/newer version.

Signed-off-by: Mathieu Olivari <mathieu@qca.qualcomm.com>
SVN-Revision: 44076
include/scan.awk [new file with mode: 0644]
include/scan.mk
scripts/feeds