/[d-i]/trunk/scripts/generate-modules-list
ViewVC logotype

Contents of /trunk/scripts/generate-modules-list

Parent Directory Parent Directory | Revision Log Revision Log


Revision 16438 - (show annotations) (download)
Sat May 29 02:19:38 2004 UTC (9 years ago) by joeyh
File size: 449 byte(s)
add
1 #!/bin/sh
2 # Generates a list of all modules included in any of the d-i kernel udebs.
3 # The parameter is the directory that contains the source for kernel-wedge
4 # and all the packages. This is to be used in discover-data reduction.
5 (
6 for dir in $1/*; do
7 for file in $(find $dir/modules -type f | grep -v .svn | grep -v .lnk); do
8 cat $file | sed 's/^-//' | grep -v \# | grep -v '^$' | sed 's!.*/!!' | sed 's/\..*//'
9 done
10 done
11 ) | sort | uniq

Properties

Name Value
svn:executable *

  ViewVC Help
Powered by ViewVC 1.1.5