First check in

This commit is contained in:
2016-10-03 14:13:06 -05:00
commit 28a4106ba7
8 changed files with 6921 additions and 0 deletions

3
SNAP/README Normal file
View File

@@ -0,0 +1,3 @@
This is the directory where the manifest, snapinfo, and files.tar.gz
files will be created. It is also where the usher file should be
placed if it is required by the package.

6790
SNAP/config-3.16.37-sr0 Normal file

File diff suppressed because it is too large Load Diff

2
SNAP/usb.conf Normal file
View File

@@ -0,0 +1,2 @@
install ohci_hcd /sbin/modprobe ehci_hcd ; /sbin/modprobe -i ohci_hcd ; true
install uhci_hcd /sbin/modprobe ehci_hcd ; /sbin/modprobe -i uhci_hcd ; true

18
SNAP/usher Executable file
View File

@@ -0,0 +1,18 @@
#!/bin/bash
set -e
case $1 in
preinst)
exit 0
;;
postinst)
mkinitramfs
;;
prerm)
exit 0
;;
postrm)
exit 0
;;
esac