From c18a81fd6d9fffb0da4f81e557f79120c1592c89 Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Sun, 24 Jan 2016 15:36:05 +0000 Subject: 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 git-svn-id: svn://svn.openwrt.org/openwrt/trunk@48475 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- scripts/metadata.pl | 10 +++++----- scripts/metadata.pm | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) (limited to 'scripts') diff --git a/scripts/metadata.pl b/scripts/metadata.pl index 48b1b7a960..99fdba1c81 100755 --- a/scripts/metadata.pl +++ b/scripts/metadata.pl @@ -833,12 +833,12 @@ sub gen_package_source() { } } -sub gen_package_feeds() { +sub gen_package_subdirs() { parse_package_metadata($ARGV[0]) or exit 1; foreach my $name (sort {uc($a) cmp uc($b)} keys %package) { my $pkg = $package{$name}; - if ($pkg->{name} && $pkg->{feed}) { - print "Package/$name/feed = $pkg->{feed}\n"; + if ($pkg->{name} && $pkg->{package_subdir}) { + print "Package/$name/subdir = $pkg->{package_subdir}\n"; } } } @@ -880,7 +880,7 @@ sub parse_command() { /^package_config$/ and return gen_package_config(); /^kconfig/ and return gen_kconfig_overrides(); /^package_source$/ and return gen_package_source(); - /^package_feeds$/ and return gen_package_feeds(); + /^package_subdirs$/ and return gen_package_subdirs(); /^package_license$/ and return gen_package_license(0); /^package_licensefull$/ and return gen_package_license(1); /^version_filter$/ and return gen_version_filtered_list(); @@ -892,7 +892,7 @@ Available Commands: $0 package_config [file] Package metadata in Kconfig format $0 kconfig [file] [config] [patchver] Kernel config overrides $0 package_source [file] Package source file information - $0 package_feeds [file] Package feed information in makefile format + $0 package_subdirs [file] Package subdir information in makefile format $0 package_license [file] Package license information $0 package_licensefull [file] Package license information (full list) $0 version_filter [patchver] [list...] Filter list of version tagged strings diff --git a/scripts/metadata.pm b/scripts/metadata.pm index 0ed3524e81..8e285e53a8 100644 --- a/scripts/metadata.pm +++ b/scripts/metadata.pm @@ -222,7 +222,7 @@ sub parse_package_metadata($) { /^Build-Depends: \s*(.+)\s*$/ and $pkg->{builddepends} = [ split /\s+/, $1 ]; /^Build-Depends\/(\w+): \s*(.+)\s*$/ and $pkg->{"builddepends/$1"} = [ split /\s+/, $2 ]; /^Build-Types:\s*(.+)\s*$/ and $pkg->{buildtypes} = [ split /\s+/, $1 ]; - /^Feed:\s*(.+?)\s*$/ and $pkg->{feed} = $1; + /^Package-Subdir:\s*(.+?)\s*$/ and $pkg->{package_subdir} = $1; /^Category: \s*(.+)\s*$/ and do { $pkg->{category} = $1; defined $category{$1} or $category{$1} = {}; -- cgit v1.2.3