In Arch Linux
mkinitcpio -p linux
shows
Possibly missing firmware for module: aic94xx
Possibly missing firmware for module: wd719x
#!/usr/bin/env bash | |
set -e | |
declare -i last_called=0 | |
declare -i throttle_by=4 | |
@throttle() { | |
local -i now=$(date +%s) | |
if (($now - $last_called > $throttle_by)) | |
then |
#!/bin/bash | |
## A script to install Funtoo Linux on a computer. | |
####---------------------------------------------#### | |
export PS1="(chroot) $PS1" | |
echo Downloading the portage tree... | |
ego sync | |
emerge --sync |