mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-12 12:24:40 +08:00
17 lines
264 B
Bash
17 lines
264 B
Bash
#!/bin/bash
|
|
|
|
build() {
|
|
add_module "radeon"
|
|
add_module "nouveau"
|
|
add_module "i915"
|
|
add_module "via-agp"
|
|
add_module "sis-agp"
|
|
add_module "intel-agp"
|
|
}
|
|
|
|
help() {
|
|
cat << HELPEOF
|
|
Adds all common KMS drivers to the initramfs image.
|
|
HELPEOF
|
|
}
|