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
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.
File diff suppressed because it is too large Load Diff
+2
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
Executable
+18
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