From cd91ad28b04dd5f07f5f6cc0b3b59f92d902326d Mon Sep 17 00:00:00 2001 From: Thomas Bächler Date: Tue, 29 Nov 2011 13:26:13 +0100 Subject: Add common KMS modules to the releng initramfs image. On machines with common graphics chipsets (radeon, intel, nvidia), enable KMS early. Downloading images from a remote server can take time, better view the status with a nice resolution. --- archiso/install/archiso_kms | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 archiso/install/archiso_kms (limited to 'archiso/install/archiso_kms') 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 +} -- cgit v1.2.3-54-g00ecf