Parent Directory
|
Revision Log
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 |
| Name | Value |
|---|---|
| svn:executable | * |
| ViewVC Help | |
| Powered by ViewVC 1.1.5 |