Rename archiso-early hook to archiso_early

To make compatible with disablehooks= param. Since "hook_archiso-early"
is not a valid variable name.

Signed-off-by: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>
This commit is contained in:
Gerardo Exequiel Pozzi 2010-02-18 00:10:39 -03:00
parent be521f8658
commit b7ca4bf281
4 changed files with 4 additions and 4 deletions

View File

@ -7,9 +7,9 @@ install: all
install -D -m 755 testiso $(DESTDIR)/usr/bin/testiso
# hooks/install are needed by mkinitcpio
install -D -m 644 hooks/archiso $(DESTDIR)/lib/initcpio/hooks/archiso
install -D -m 644 hooks/archiso-early $(DESTDIR)/lib/initcpio/hooks/archiso-early
install -D -m 644 hooks/archiso_early $(DESTDIR)/lib/initcpio/hooks/archiso_early
install -D -m 644 install/archiso $(DESTDIR)/lib/initcpio/install/archiso
install -D -m 644 install/archiso-early $(DESTDIR)/lib/initcpio/install/archiso-early
install -D -m 644 install/archiso_early $(DESTDIR)/lib/initcpio/install/archiso_early
# install docs and examples
install -d -m 644 $(DESTDIR)/usr/share/archiso/
cp -r ../configs $(DESTDIR)/usr/share/archiso/configs

View File

@ -3,7 +3,7 @@ install ()
MODULES=""
BINARIES=""
FILES=""
SCRIPT="archiso-early"
SCRIPT="archiso_early"
}
# vim:ft=sh:ts=4:sw=4:et:

View File

@ -2,5 +2,5 @@
MODULES=""
BINARIES=""
FILES=""
HOOKS="base archiso-early udev archiso pata scsi sata usb fw pcmcia filesystems usbinput"
HOOKS="base archiso_early udev archiso pata scsi sata usb fw pcmcia filesystems usbinput"
COMPRESSION="lzma"