kld (f5dfe75da5ba2937f8766792f625f32fc3ef4757) | kld (b11974c250671368e1eb869ca8ce2ed70622917f) |
---|---|
1#!/bin/sh 2 3# Copyright (c) 2011 Douglas Barton 4# All rights reserved. 5# 6# Redistribution and use in source and binary forms, with or without 7# modification, are permitted provided that the following conditions 8# are met: --- 32 unchanged lines hidden (view full) --- 41kld_start() 42{ 43 [ -n "$kld_list" ] || return 44 45 local _kld 46 47 echo 'Loading kernel modules:' 48 for _kld in $kld_list ; do | 1#!/bin/sh 2 3# Copyright (c) 2011 Douglas Barton 4# All rights reserved. 5# 6# Redistribution and use in source and binary forms, with or without 7# modification, are permitted provided that the following conditions 8# are met: --- 32 unchanged lines hidden (view full) --- 41kld_start() 42{ 43 [ -n "$kld_list" ] || return 44 45 local _kld 46 47 echo 'Loading kernel modules:' 48 for _kld in $kld_list ; do |
49 load_kld $_kld | 49 load_kld -e ${_kld}.ko $_kld |
50 done 51} 52 53load_rc_config $name 54run_rc_command "$1" | 50 done 51} 52 53load_rc_config $name 54run_rc_command "$1" |