# netbook-modules
#
# This service is to load modules needed at boot

description "Belmont modules"
author	    "Michael Frey <michael.frey@canonical.com>"

start on runlevel 2


script

if [ `lspci | grep -ci poulsbo` -eq 0 ]; then
   modprobe intel_agp
   modprobe drm
else
   modprobe drm_psb
   touch /var/tmp/poulsbo
fi

modprobe snd_hda_intel
modprobe uvcvideo

end script
