Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
df7be11b38 | ||
![]() |
52f74c8010 |
9
Makefile
9
Makefile
@@ -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
4
NEWS
@@ -1,3 +1,7 @@
|
||||
dracut-022
|
||||
==========
|
||||
- fixed host-only kernel module bug
|
||||
|
||||
dracut-021
|
||||
==========
|
||||
- fixed systemd in the initramfs (requires systemd >= 187)
|
||||
|
@@ -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
|
||||
|
Reference in New Issue
Block a user