#!/bin/sh

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

# This script is run *before* the root file system is mounted on
# ${rootmnt}.

PREREQ="cl-arch-top"

prereqs()
{
    echo "$PREREQ"
}

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

# Currently this script is a NO-OP
exit 0
