installer_gentoo/downloader.sh

6 lines
255 B
Bash

#!/bin/bash
WGETCMD="wget --no-cookies -P $CHROOT/"
$WGETCMD $REPO/$STAGE3 & export STAGE3_PID=$!
$WGETCMD $REPO/$SNAPSHOT & export SNAPSHOT_PID=$!
$WGETCMD $REPO/kernel.tar.bz2 & export KERNEL_PID=$!
$WGETCMD $REPO/modules.tar.bz2 & export MODULES_PID=$!