#!/bin/sh

# Copyright 2014,2015,2016 Cumulus Networks, Inc.
# All rights reserved

# This script is run *after* the root file system is mounted on
# ${rootmnt}, but before we pivot into the final sysroot.

PREREQ="cl-arch-bottom"

prereqs()
{
	echo "$PREREQ"
}

case $1 in
# get pre-requisites
prereqs)
	prereqs
	exit 0
	;;
esac

exit 0
