#!/usr/bin/perl

# -- Touch the /System/Library/Extensions dir, and load our kext

system("echo 'kext postinstall script-----'");
system("touch /System/Library/Extensions");
system("kextload /System/Library/Extensions/AmbrosiaAudioSupport.kext");

exit(0);
