|
833 | 833 | }
|
834 | 834 | }
|
835 | 835 |
|
836 |
| -sub gen_package_feeds() { |
| 836 | +sub gen_package_subdirs() { |
837 | 837 | parse_package_metadata($ARGV[0]) or exit 1;
|
838 | 838 | foreach my $name (sort {uc($a) cmp uc($b)} keys %package) {
|
839 | 839 | my $pkg = $package{$name};
|
840 |
| - if ($pkg->{name} && $pkg->{feed}) { |
841 |
| - print "Package/$name/feed = $pkg->{feed}\n"; |
| 840 | + if ($pkg->{name} && $pkg->{package_subdir}) { |
| 841 | + print "Package/$name/subdir = $pkg->{package_subdir}\n"; |
842 | 842 | }
|
843 | 843 | }
|
844 | 844 | }
|
|
880 | 880 | /^package_config$/ and return gen_package_config();
|
881 | 881 | /^kconfig/ and return gen_kconfig_overrides();
|
882 | 882 | /^package_source$/ and return gen_package_source();
|
883 |
| - /^package_feeds$/ and return gen_package_feeds(); |
| 883 | + /^package_subdirs$/ and return gen_package_subdirs(); |
884 | 884 | /^package_license$/ and return gen_package_license(0);
|
885 | 885 | /^package_licensefull$/ and return gen_package_license(1);
|
886 | 886 | /^version_filter$/ and return gen_version_filtered_list();
|
|
892 | 892 | $0 package_config [file] Package metadata in Kconfig format
|
893 | 893 | $0 kconfig [file] [config] [patchver] Kernel config overrides
|
894 | 894 | $0 package_source [file] Package source file information
|
895 |
| - $0 package_feeds [file] Package feed information in makefile format |
| 895 | + $0 package_subdirs [file] Package subdir information in makefile format |
896 | 896 | $0 package_license [file] Package license information
|
897 | 897 | $0 package_licensefull [file] Package license information (full list)
|
898 | 898 | $0 version_filter [patchver] [list...] Filter list of version tagged strings
|
|
0 commit comments