summaryrefslogtreecommitdiff
path: root/archiso/install
diff options
context:
space:
mode:
Diffstat (limited to 'archiso/install')
-rw-r--r--archiso/install/archiso_kms14
-rw-r--r--archiso/install/archiso_pxe_common30
-rw-r--r--archiso/install/archiso_pxe_http15
-rw-r--r--archiso/install/archiso_pxe_nfs16
-rw-r--r--archiso/install/archiso_shutdown18
5 files changed, 93 insertions, 0 deletions
diff --git a/archiso/install/archiso_kms b/archiso/install/archiso_kms
new file mode 100644
index 0000000..6566049
--- /dev/null
+++ b/archiso/install/archiso_kms
@@ -0,0 +1,14 @@
+#!/bin/bash
+
+build() {
+ MODULES="radeon nouveau i915 via-agp sis-agp intel-agp"
+ if [[ $(uname -m) == i686 ]]; then
+ MODULES+=" amd64-agp ati-agp sworks-agp ali-agp amd-k7-agp nvidia-agp efficeon-agp"
+ fi
+}
+
+help() {
+ cat << HELPEOF
+Adds all common KMS drivers to the initramfs image.
+HELPEOF
+}
diff --git a/archiso/install/archiso_pxe_common b/archiso/install/archiso_pxe_common
new file mode 100644
index 0000000..b37e5a1
--- /dev/null
+++ b/archiso/install/archiso_pxe_common
@@ -0,0 +1,30 @@
+#!/bin/bash
+
+build() {
+ MODULES="${MODULES} $(comm -2 -3 <(checked_modules "/drivers/net/" | sort) \
+ <(find $MODULEDIR/kernel/drivers/net/{irda,phy,wimax,wireless} \
+ -name '*.ko*' \
+ -exec bash -c 'printf "%s\n" "${@%%.ko*}" | sed "s@.*/@@;s@-@_@" | sort' _ {} +) \
+ | grep -v -e 'ppp_' -e 'plip' -e 'pppoe')"
+ SCRIPT="archiso_pxe_common"
+
+
+ add_binary /lib/initcpio/ipconfig /bin/ipconfig
+
+ # Add hosts support files+dns
+ add_symlink /lib/libnss_files.so.2 $(readlink /lib/libnss_files.so.2)
+ add_binary $(readlink -f /lib/libnss_files.so.2)
+ add_symlink /lib/libnss_dns.so.2 $(readlink /lib/libnss_dns.so.2)
+ add_binary $(readlink -f /lib/libnss_dns.so.2)
+
+ add_dir /etc
+ echo "hosts: files dns" > $BUILDROOT/etc/nsswitch.conf
+}
+
+help() {
+cat<<HELPEOF
+ This hook loads the necessary modules for boot via PXE.
+HELPEOF
+}
+
+# vim: set ft=sh ts=4 sw=4 et:
diff --git a/archiso/install/archiso_pxe_http b/archiso/install/archiso_pxe_http
new file mode 100644
index 0000000..9e2ff65
--- /dev/null
+++ b/archiso/install/archiso_pxe_http
@@ -0,0 +1,15 @@
+#!/bin/bash
+
+build() {
+ SCRIPT="archiso_pxe_http"
+
+ add_binary curl
+}
+
+help() {
+cat<<HELPEOF
+ This hook loads the necessary modules for boot via PXE and HTTP.
+HELPEOF
+}
+
+# vim: set ft=sh ts=4 sw=4 et:
diff --git a/archiso/install/archiso_pxe_nfs b/archiso/install/archiso_pxe_nfs
new file mode 100644
index 0000000..f7b6f5d
--- /dev/null
+++ b/archiso/install/archiso_pxe_nfs
@@ -0,0 +1,16 @@
+#!/bin/bash
+
+build() {
+ MODULES="nfs"
+ SCRIPT="archiso_pxe_nfs"
+
+ add_binary /lib/initcpio/nfsmount /bin/nfsmount
+}
+
+help() {
+ cat <<HELPEOF
+ This hook loads the necessary modules for boot via PXE and NFS.
+HELPEOF
+}
+
+# vim: set ft=sh ts=4 sw=4 et:
diff --git a/archiso/install/archiso_shutdown b/archiso/install/archiso_shutdown
new file mode 100644
index 0000000..87b8297
--- /dev/null
+++ b/archiso/install/archiso_shutdown
@@ -0,0 +1,18 @@
+#!/bin/bash
+
+build() {
+ SCRIPT="archiso_shutdown"
+
+ add_file /usr/lib/initcpio/archiso_shutdown /shutdown
+}
+
+help() {
+ cat <<HELPEOF
+This hook will create a shutdown initramfs in /run/initramfs
+that we can pivot to on shutdown in order to unmount / and
+and others mount points, dm-snapshot devices and loopback devices.
+Mostly usefull for dm-snapshot persistent.
+HELPEOF
+}
+
+# vim: set ft=sh ts=4 sw=4 et: