Compare commits

...

2 Commits
021 ... 022

Author SHA1 Message Date
Harald Hoyer
df7be11b38 Version 022 2012-07-20 13:11:21 +02:00
Harald Hoyer
52f74c8010 dracut-functions.sh: fixed host-only kernel module bug 2012-07-20 13:10:58 +02:00
3 changed files with 14 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
VERSION=021
VERSION=022
GITVERSION=$(shell [ -d .git ] && git rev-list --abbrev-commit -n 1 HEAD |cut -b 1-8)
prefix ?= /usr
@@ -156,3 +156,10 @@ hostimage: all
AUTHORS:
git shortlog --numbered --summary -e |while read a rest; do echo $$rest;done > AUTHORS
dracut.html.sign: dracut-$(VERSION).tar.bz2
gpg-sign-all dracut-$(VERSION).tar.bz2 dracut.html
upload: dracut.html.sign
kup put dracut-$(VERSION).tar.bz2 dracut-$(VERSION).tar.sign /pub/linux/utils/boot/dracut/
kup put dracut.html dracut.html.sign /pub/linux/utils/boot/dracut/

4
NEWS
View File

@@ -1,3 +1,7 @@
dracut-022
==========
- fixed host-only kernel module bug
dracut-021
==========
- fixed systemd in the initramfs (requires systemd >= 187)

View File

@@ -1296,8 +1296,8 @@ find_kernel_modules_by_path () (
( cd /sys/module; echo *; ) \
| xargs -r modinfo -F filename -k $kernel 2>/dev/null \
| while read a; do
[[ $a = kernel*/$1/* ]] || continue
echo $srcmods/$a
[[ $a = */kernel*/$1/* ]] || continue
echo $a
done
fi
return 0