#!/bin/sh
# v3-kernel. Copy kernel from the host to the TARGET

. ./config.vl
. ./config.core

## Copy kernels
if ! vckernel; then
    exit 1
fi

## Make SCSI initrd
if ! vcinitrd; then
    exit 1
fi


echo
echo Next you should call
echo v4-core1  : install core packages

   



