From caf8ec2e2623407dfd933959eaaea4f08612729f Mon Sep 17 00:00:00 2001 From: Philipp Gesang Date: Sun, 31 May 2015 09:54:01 +0200 Subject: misc: add example initramfs setup --- .gitignore | 2 +- misc/etc/initcpio/hooks/vtcol | 21 +++++++++++++++++++++ misc/etc/initcpio/install/vtcol | 29 +++++++++++++++++++++++++++++ misc/etc/mkinitcpio-vtcol.conf | 26 ++++++++++++++++++++++++++ misc/etc/mkinitcpio.d/vtcol.preset | 32 ++++++++++++++++++++++++++++++++ 5 files changed, 109 insertions(+), 1 deletion(-) create mode 100644 misc/etc/initcpio/hooks/vtcol create mode 100644 misc/etc/initcpio/install/vtcol create mode 100644 misc/etc/mkinitcpio-vtcol.conf create mode 100644 misc/etc/mkinitcpio.d/vtcol.preset diff --git a/.gitignore b/.gitignore index 05957dd..1ccdd63 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,5 @@ # build result -vtcol +./vtcol # build side-effects target/* diff --git a/misc/etc/initcpio/hooks/vtcol b/misc/etc/initcpio/hooks/vtcol new file mode 100644 index 0000000..be02f24 --- /dev/null +++ b/misc/etc/initcpio/hooks/vtcol @@ -0,0 +1,21 @@ +#!/usr/bin/ash +############################################################################### +# Copyright 2015 Philipp Gesang +# Example mkinitcpio hook invoking vtcol in the initramfs environment +############################################################################### +# +# See mkinitcpio(8) for details. +# + +run_hook () +{ + binary=/usr/bin/vtcol + scheme=solarized + schemedir=/usr/share/vtcol/schemes + + if [ -f "${schemedir}/${scheme}" ] && [ -x "${binary}" ]; then + "${binary}" --scheme "${schemedir}/${scheme}" + fi +} + +# vim:ft=sh:sw=4:et diff --git a/misc/etc/initcpio/install/vtcol b/misc/etc/initcpio/install/vtcol new file mode 100644 index 0000000..3fb01c9 --- /dev/null +++ b/misc/etc/initcpio/install/vtcol @@ -0,0 +1,29 @@ +#!/bin/bash +############################################################################### +# Copyright 2015 Philipp Gesang +# Example mkinitcpio build hook invoking vtcol in the initramfs environment +############################################################################### +# +# See mkinitcpio(8) for details. +# +# This does nothing besides invoking ``add_runscript`` to add the vtcol +# initcpio hook and displaying some basic info. + +build () { + add_runscript +} + +help () { + cat <