diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2016-01-24 15:36:05 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2016-01-24 15:36:05 +0000 |
commit | 0333da8943275324d366d562b70f90febbe97e7d (patch) | |
tree | d01138f8aa9c91cccbf8e85e4fe0f4bb27d602d4 /include/toplevel.mk | |
parent | 96afb90f3f96c15cd4bfd6a050538292074cf9da (diff) | |
download | upstream-0333da8943275324d366d562b70f90febbe97e7d.tar.gz upstream-0333da8943275324d366d562b70f90febbe97e7d.tar.bz2 upstream-0333da8943275324d366d562b70f90febbe97e7d.zip |
include: group kmod ipk files into a "kernel" subdirectory
This is useful to just use the kmods from an official build while supplying
base packages from a custom feed or the other way around; for just overriding
the kmods with a local repo while using official repos for the rest.
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
SVN-Revision: 48475
Diffstat (limited to 'include/toplevel.mk')
-rw-r--r-- | include/toplevel.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/toplevel.mk b/include/toplevel.mk index d13a37013c..0cba07c6e6 100644 --- a/include/toplevel.mk +++ b/include/toplevel.mk @@ -84,9 +84,9 @@ prepare-tmpinfo: FORCE f=tmp/.$${type}info; t=tmp/.config-$${type}.in; \ [ "$$t" -nt "$$f" ] || ./scripts/metadata.pl $(_ignore) $${type}_config "$$f" > "$$t" || { rm -f "$$t"; echo "Failed to build $$t"; false; break; }; \ done - [ tmp/.config-feeds.in -nt tmp/.packagefeeds ] || ./scripts/feeds feed_config > tmp/.config-feeds.in + [ tmp/.config-feeds.in -nt tmp/.packagesubdirs ] || ./scripts/feeds feed_config > tmp/.config-feeds.in ./scripts/metadata.pl package_mk tmp/.packageinfo > tmp/.packagedeps || { rm -f tmp/.packagedeps; false; } - ./scripts/metadata.pl package_feeds tmp/.packageinfo > tmp/.packagefeeds || { rm -f tmp/.packagefeeds; false; } + ./scripts/metadata.pl package_subdirs tmp/.packageinfo > tmp/.packagesubdirs || { rm -f tmp/.packagesubdirs; false; } touch $(TOPDIR)/tmp/.build .config: ./scripts/config/conf $(if $(CONFIG_HAVE_DOT_CONFIG),,prepare-tmpinfo) |