diff options
author | Harald Hoyer <harald@redhat.com> | 2012-07-20 13:11:21 +0200 |
---|---|---|
committer | Harald Hoyer <harald@redhat.com> | 2012-07-20 13:11:21 +0200 |
commit | df7be11b38a29c880273945d8000abcffdb5b9a6 (patch) | |
tree | d42c4fa0e3a7f4a1b4851fca7b4c6254acf57bc6 /Makefile | |
parent | 52f74c80101a4bfcd0993e3e110bef9c6d106743 (diff) | |
download | dracut-df7be11b38a29c880273945d8000abcffdb5b9a6.tar.gz dracut-df7be11b38a29c880273945d8000abcffdb5b9a6.tar.bz2 dracut-df7be11b38a29c880273945d8000abcffdb5b9a6.zip |
Version 022022
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -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/ |