summarylogtreecommitdiffstats
path: root/install
blob: d7f14cb2abca355fe413bc5597832ff0d82c73a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
post_upgrade() {
	depmod
	mkinitcpio -P linux
}

post_install() {
	rmmod sdhci_pci
	rmmod sdhci_acpi
	rmmod sdhci
	modprobe rtsx_usb
	# bluetooth
	modprobe btusb
	post_upgrade
}

post_remove() {
	rmmod rtsx_usb_ms
	rmmod rtsx_usb_sdmmc
	rmmod rtsx_usb
	# bluetooth
	rmmod btusb
	post_upgrade
}