#!/bin/sh

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

# amd64 architecture initramfs-tools script.
#
# This script is run *before* the common "cumulus-bottom" script to
# arrange things specific for this CPU architecture.

PREREQ=""

prereqs()
{
	echo "$PREREQ"
}

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

# Currently this script is a NO-OP
exit 0
