Skip to content
This repository has been archived by the owner on Aug 14, 2023. It is now read-only.

Commit

Permalink
Merge pull request #76 from hypriot/fix-startup-of-modules-load.service
Browse files Browse the repository at this point in the history
Fix startup of systemd-modules-load.service
  • Loading branch information
DieterReuter committed May 15, 2016
2 parents 02c6f07 + 714dd59 commit 4caf307
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion builder/chroot-script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ enable_uart=1
# /etc/modules
echo "vchiq
snd_bcm2835
bcm2708-rng
bcm2835_rng
" >> /etc/modules

# create /etc/fstab
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
Specinfra::Runner.run_command('modprobe snd_bcm2835')
Specinfra::Runner.run_command('modprobe bcm2835_rng')

describe kernel_module('snd_bcm2835') do
it { should be_loaded }
end

describe kernel_module('bcm2835_rng') do
it { should be_loaded }
end

0 comments on commit 4caf307

Please sign in to comment.