Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2012-05-18 | buildsys: fix clean target | Dave Reisner | 1 | -1/+1 | |
We don't ship compressed manpages, and this never touched lsinitcpio's generated page. Signed-off-by: Dave Reisner <dreisner@archlinux.org> | |||||
2012-04-22 | create lsinitcpio symlink for bash completion | Dave Reisner | 1 | -0/+1 | |
Signed-off-by: Dave Reisner <dreisner@archlinux.org> | |||||
2012-04-22 | Add manpage for lsinitcpio | Dave Reisner | 1 | -3/+13 | |
Signed-off-by: Dave Reisner <dreisner@archlinux.org> | |||||
2012-04-02 | add minor tweaks to make testing a bit easier | Dave Reisner | 1 | -0/+1 | |
Since INSTDIR and HOOKDIR are understood as arrays now, declare them as such with the local 'hooks' and 'install' first to override the local FS. This makes the missing udev error go away and allows easier testing of other out of tree hooks. Signed-off-by: Dave Reisner <dreisner@archlinux.org> | |||||
2012-03-24 | Makefile: simplify 'make dist' target0.8.5 | Dave Reisner | 1 | -9/+6 | |
- Use git-ls-files and bsdtar to create the archive rather than using git-archive and an temporary directory. - Remove the tarball target. 'dist' is more common. - Remove the 'clean' dependency from dist. Our dependencies are sufficient higher up that touching the Makefile or the asciidoc input will trigger a doc rebuild on changes. Signed-off-by: Dave Reisner <dreisner@archlinux.org> | |||||
2012-03-24 | move bash completion to /usr/share/bash-completion | Dave Reisner | 1 | -2/+2 | |
Signed-off-by: Dave Reisner <dreisner@archlinux.org> | |||||
2012-03-04 | add support for HOOKDIR/INSTDIR as arrays | Dave Reisner | 1 | -12/+12 | |
This is a really ugly patch, but allows mkinitcpio to read hooks from multiple locations, namely: /usr/lib/initcpio/{install,hooks} /lib/initcpio/{install,hooks} Preference is given to the first, and all files included with mkinitcpio are moved there. Signed-off-by: Dave Reisner <dreisner@archlinux.org> | |||||
2012-01-05 | shutdown: add new hook0.8.1 | Dave Reisner | 1 | -1/+1 | |
This adds functionality to pivot to back to the initramfs on shutdown, thereby allowing the system to unmount the real root device. This will be necessary for anyone with /usr as a separate partition. | |||||
2011-11-15 | Makefile: install binaries to /usr/bin | Dave Reisner | 1 | -5/+4 | |
Signed-off-by: Dave Reisner <dreisner@archlinux.org> | |||||
2011-10-16 | move manpage to section 8 | Dave Reisner | 1 | -7/+7 | |
This is an admin command, not a config file. Signed-off-by: Dave Reisner <dreisner@archlinux.org> | |||||
2011-10-01 | harden version generation | Florian Pritz | 1 | -2/+5 | |
If you run make dist, extract that tarball somewhere else and try to run makepkg it will fail because it can't find the git tree anymore. [Dave: removed --dirty flag, as this breaks makepkg] Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2011-07-10 | generate VERSION only for the tarballHEADmaster | Florian Pritz | 1 | -9/+5 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2011-07-05 | Makefile: allow git-describe to determine version | Dave Reisner | 1 | -5/+10 | |
For distribution, a VERSION file is written to and distributed for storing the ref. Signed-off-by: Dave Reisner <dreisner@archlinux.org> | |||||
2011-07-04 | mkinitcpio: include version in help msg | Dave Reisner | 1 | -0/+1 | |
Signed-off-by: Dave Reisner <dreisner@archlinux.org> | |||||
2011-07-03 | Release version 0.7.10.7.1 | Thomas Bächler | 1 | -1/+1 | |
2011-07-01 | lsinitcpio: add optional colorized output | Dave Reisner | 1 | -1/+3 | |
Signed-off-by: Dave Reisner <dreisner@archlinux.org> | |||||
2011-06-30 | Release version 0.70.7 | Thomas Bächler | 1 | -1/+1 | |
2011-06-26 | Add missing /etc/bash_completion.d in Makefile | Gerardo Exequiel Pozzi | 1 | -0/+1 | |
Signed-off-by: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar> | |||||
2011-06-26 | Merge branch 'master' of https://github.com/seblu/arch-mkinitcpio into working | Thomas Bächler | 1 | -0/+1 | |
2011-06-26 | Add bash completion to mkinitcpio | Sebastien Luttringer | 1 | -0/+1 | |
It's annoying to remember the name of preset each time Signed-off-by: Sebastien Luttringer <seblu@seblu.net> | |||||
2011-06-26 | Makefile: the Makefile itself is a dep for the manpage | Dave Reisner | 1 | -1/+1 | |
This will force the doc to be regenerated if there is a version bump in the Makefile. Signed-off-by: Dave Reisner <d@falconindy.com> | |||||
2011-06-19 | mkinitcpio: bashification, part 1/2 | Dave Reisner | 1 | -5/+5 | |
Always use bash's [[ ]], and apply (( )) where arithmetic calculations are made. We also take a few other bash shortcuts to simplify code where possible. We also touch the Makefile here to adjust the sed'ing for directory names. Signed-off-by: Dave Reisner <d@falconindy.com> | |||||
2011-06-16 | Makefile: refactor and simplify | Dave Reisner | 1 | -52/+42 | |
This should all lead to easier maintenance. * use git-archive to create the tarball, appending DIST_EXTRA to the tarball afterwards. * use commonly defined variables such as ${RM} * always use install, rather than cp to ensure proper permissions * functionize creation of directories * add .PHONY targets * combined commands wherever possible Signed-off-by: Dave Reisner <d@falconindy.com> | |||||
2011-06-16 | lsinitcpio: new utility to dump contents of images | Dave Reisner | 1 | -0/+5 | |
Signed-off-by: Dave Reisner <d@falconindy.com> | |||||
2011-06-16 | Release version 0.6.150.6.15 | Thomas Bächler | 1 | -1/+1 | |
2011-06-12 | Release version 0.6.140.6.14 | Thomas Bächler | 1 | -1/+1 | |
2011-06-02 | Release version 0.6.130.6.13 | Thomas Bächler | 1 | -1/+1 | |
2011-06-02 | Remove load-modules.sh. Requires the udev 171-2 package. | Thomas Bächler | 1 | -2/+0 | |
2011-05-14 | Release mkinitcpio 0.6.120.6.12 | Thomas Bächler | 1 | -1/+1 | |
2011-04-21 | Release version 0.6.110.6.11 | Thomas Bächler | 1 | -1/+1 | |
2011-04-10 | Release mkinitcpio 0.6.100.6.10 | Thomas Bächler | 1 | -1/+1 | |
2011-03-27 | Release mkinitcpio 0.6.90.6.9 | Thomas Bächler | 1 | -1/+1 | |
2011-01-26 | Release version 0.6.80.6.8 | Thomas Bächler | 1 | -1/+1 | |
2010-07-11 | Release 0.6.70.6.7 | Thomas Bächler | 1 | -1/+2 | |
2010-06-23 | memdisk: add 01-memdisk.rules to Makefile, use the correct path in ↵ | Thomas Bächler | 1 | -0/+1 | |
install/memdisk | |||||
2010-06-19 | Release 0.6.60.6.6 | Thomas Bächler | 1 | -1/+1 | |
2010-06-03 | Release 0.6.50.6.5 | Thomas Bächler | 1 | -1/+1 | |
2010-05-08 | Release 0.6.40.6.4 | Thomas Bächler | 1 | -1/+1 | |
2010-02-21 | Release 0.6.30.6.3 | Thomas Bächler | 1 | -1/+1 | |
2010-02-14 | Release 0.6.20.6.2 | Thomas Bächler | 1 | -1/+1 | |
2010-02-14 | Release 0.6.10.6.1 | Thomas Bächler | 1 | -1/+1 | |
2010-02-11 | Release 0.60.6 | Thomas Bächler | 1 | -1/+1 | |
2010-02-10 | Release 0.5.99.50.5.99.5 | Thomas Bächler | 1 | -1/+1 | |
2010-02-07 | Release 0.5.99.40.5.99.4 | Thomas Bächler | 1 | -1/+1 | |
2010-02-07 | Release 0.5.99.30.5.99.3 | Thomas Bächler | 1 | -1/+1 | |
2010-01-24 | Install load-modules.sh to the tarball | Thomas Bächler | 1 | -0/+1 | |
2010-01-12 | Correct load-modules.sh permissions (+x was missing) | Thomas Bächler | 1 | -1/+1 | |
2010-01-10 | Add udev hook, originated from the obsolete klibc-udev package | Thomas Bächler | 1 | -0/+1 | |
2009-09-19 | Specify mansource, manversion and manmanual when generating the man page. | Loui Chang | 1 | -1/+1 | |
This also removes occurances of FIXME in the page. Signed-off-by: Loui Chang <louipc.ist@gmail.com> | |||||
2009-09-01 | Makefile: Add a rule to generate a source tarball. | Loui Chang | 1 | -1/+25 | |
Signed-off-by: Loui Chang <louipc.ist@gmail.com> Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com> |