#!/bin/sh

loadkernelmodule_enabled() {
        return 0
}

loadkernelmodule_run() {
	for MODULE in  ;do
		load_kernel_module $MODULE
	done
}
