2009-12-21 Felix Zielcke <fzielcke@z-51.de>
* util/grub-mkrescue.in: (process_input_dir): Copy `*.lst' files instead of specifying them explicit.
This commit is contained in:
parent
7922f68bb5
commit
4dd13225a0
2 changed files with 6 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
2009-12-21 Felix Zielcke <fzielcke@z-51.de>
|
||||
|
||||
* util/grub-mkrescue.in: (process_input_dir): Copy `*.lst' files
|
||||
instead of specifying them explicit.
|
||||
|
||||
2009-12-21 Robert Millan <rmh.grub@aybabtu.com>
|
||||
|
||||
* NEWS: Add grub-probe support for GNU/Hurd.
|
||||
|
|
|
@ -94,8 +94,7 @@ process_input_dir ()
|
|||
platform="$2"
|
||||
mkdir -p ${iso9660_dir}/boot/grub/${target_cpu}-${platform}
|
||||
for file in ${input_dir}/*.mod ${input_dir}/efiemu??.o \
|
||||
${input_dir}/command.lst ${input_dir}/moddep.lst ${input_dir}/fs.lst \
|
||||
${input_dir}/handler.lst ${input_dir}/parttool.lst; do
|
||||
${input_dir}/*.lst; do
|
||||
if test -f "$file"; then
|
||||
cp -f "$file" ${iso9660_dir}/boot/grub/${target_cpu}-${platform}/
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue