diff options
Diffstat (limited to 'archiso/install')
-rw-r--r-- | archiso/install/archiso | 22 | ||||
-rw-r--r-- | archiso/install/archiso_kms | 26 | ||||
-rw-r--r-- | archiso/install/archiso_loop_mnt | 13 | ||||
-rw-r--r-- | archiso/install/archiso_pxe_common | 26 | ||||
-rw-r--r-- | archiso/install/archiso_pxe_http | 15 | ||||
-rw-r--r-- | archiso/install/archiso_pxe_nbd | 17 | ||||
-rw-r--r-- | archiso/install/archiso_pxe_nfs | 17 | ||||
-rw-r--r-- | archiso/install/archiso_shutdown | 20 |
8 files changed, 0 insertions, 156 deletions
diff --git a/archiso/install/archiso b/archiso/install/archiso deleted file mode 100644 index 8893667..0000000 --- a/archiso/install/archiso +++ /dev/null @@ -1,22 +0,0 @@ -#!/bin/bash - -build() { - add_module "cdrom" - add_module "loop" - add_module "dm-snapshot" - - add_runscript - - add_binary /usr/lib/udev/cdrom_id - add_binary blockdev - add_binary dmsetup - add_binary losetup - add_binary mountpoint - - add_file /usr/lib/udev/rules.d/60-cdrom_id.rules - add_file /usr/lib/udev/rules.d/10-dm.rules - add_file /usr/lib/udev/rules.d/95-dm-notify.rules - add_file /usr/lib/initcpio/udev/11-dm-initramfs.rules /usr/lib/udev/rules.d/11-dm-initramfs.rules -} - -# vim: set ft=sh ts=4 sw=4 et: diff --git a/archiso/install/archiso_kms b/archiso/install/archiso_kms deleted file mode 100644 index 3ff31f3..0000000 --- a/archiso/install/archiso_kms +++ /dev/null @@ -1,26 +0,0 @@ -#!/bin/bash - -build() { - add_module "radeon" - add_module "nouveau" - add_module "i915" - add_module "via-agp" - add_module "sis-agp" - add_module "intel-agp" - - if [[ $(uname -m) == i686 ]]; then - add_module "amd64-agp" - add_module "ati-agp" - add_module "sworks-agp" - add_module "ali-agp" - add_module "amd-k7-agp" - add_module "nvidia-agp" - add_module "efficeon-agp" - fi -} - -help() { - cat << HELPEOF -Adds all common KMS drivers to the initramfs image. -HELPEOF -} diff --git a/archiso/install/archiso_loop_mnt b/archiso/install/archiso_loop_mnt deleted file mode 100644 index 59f1d94..0000000 --- a/archiso/install/archiso_loop_mnt +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/bash - -build() { - add_runscript -} - -help() { -cat<<HELPEOF - This hook loads the necessary modules for boot via loop device. -HELPEOF -} - -# vim: set ft=sh ts=4 sw=4 et: diff --git a/archiso/install/archiso_pxe_common b/archiso/install/archiso_pxe_common deleted file mode 100644 index eec9a7e..0000000 --- a/archiso/install/archiso_pxe_common +++ /dev/null @@ -1,26 +0,0 @@ -#!/bin/bash - -build() { - add_checked_modules -f "(irda|phy|wimax|wireless|ppp_|plip|pppoe)" "/drivers/net/" - - add_runscript - - add_binary /usr/lib/initcpio/ipconfig /bin/ipconfig - - # Add hosts support files+dns - add_symlink /usr/lib/libnss_files.so.2 $(readlink /usr/lib/libnss_files.so.2) - add_binary $(readlink -f /usr/lib/libnss_files.so.2) - add_symlink /usr/lib/libnss_dns.so.2 $(readlink /usr/lib/libnss_dns.so.2) - add_binary $(readlink -f /usr/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 deleted file mode 100644 index 4e02f98..0000000 --- a/archiso/install/archiso_pxe_http +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/bash - -build() { - add_runscript - - 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_nbd b/archiso/install/archiso_pxe_nbd deleted file mode 100644 index 47d98ce..0000000 --- a/archiso/install/archiso_pxe_nbd +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/bash - -build() { - add_module "nbd" - - add_runscript - - add_binary nbd-client -} - -help() { -cat<<HELPEOF - This hook loads the necessary modules for boot via PXE and NBD. -HELPEOF -} - -# vim: set ft=sh ts=4 sw=4 et: diff --git a/archiso/install/archiso_pxe_nfs b/archiso/install/archiso_pxe_nfs deleted file mode 100644 index f8226e5..0000000 --- a/archiso/install/archiso_pxe_nfs +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/bash - -build() { - add_module "nfs" - - add_runscript - - add_binary /usr/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 deleted file mode 100644 index 5ae976a..0000000 --- a/archiso/install/archiso_shutdown +++ /dev/null @@ -1,20 +0,0 @@ -#!/bin/bash - -build() { - add_binary cp - - add_runscript - - 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: |