diff options
author | Dave Reisner <dreisner@archlinux.org> | 2012-01-22 03:32:31 +0100 |
---|---|---|
committer | Dave Reisner <dreisner@archlinux.org> | 2012-01-28 23:34:46 +0100 |
commit | 772943680052f28fdbea9d79479e6003f7b48673 (patch) | |
tree | 929ae995d31489b2ce95f8cc3c504909bd0482ba /install/autodetect | |
parent | 828c5f7c54c1205feb2c9928646dec24a790d734 (diff) | |
download | mkinitcpio-772943680052f28fdbea9d79479e6003f7b48673.tar.gz mkinitcpio-772943680052f28fdbea9d79479e6003f7b48673.tar.xz |
autodetect: remove hack to exclude {ata,ide}-generic
In particular, skipping ata-generic causes some macbooks to not boot.
Signed-off-by: Dave Reisner <dreisner@archlinux.org>
Diffstat (limited to 'install/autodetect')
-rw-r--r-- | install/autodetect | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/install/autodetect b/install/autodetect index 7f40b9c..3fb87ce 100644 --- a/install/autodetect +++ b/install/autodetect @@ -14,7 +14,7 @@ build() { return 1 fi - auto_modules | grep -xEv '(ata|ide)_generic' >"$MODULE_FILE" + auto_modules >"$MODULE_FILE" if ! rootfstype=$(findmnt -uno fstype "${BASEDIR:-/}"); then error "failed to detect root filesystem" |