Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ remove_python_api_package() {


if [[ "$1" == "init" ]]; then

pericom="/sys/bus/pci/devices/0000:08:00.0"
modprobe i2c-dev
modprobe i2c-mux-pca954x force_deselect_on_exit=1
modprobe dell_ich
Expand All @@ -26,6 +28,10 @@ if [[ "$1" == "init" ]]; then
modprobe nvram
systemctl start s6100-reboot-cause.service

# Disable pericom/xilinx
echo 1 > /sys/bus/pci/devices/0000:02:00.0/remove
[ -d $pericom ] && echo 1 > $pericom/remove

# Disable Watchdog Timer
if [[ -e /usr/local/bin/platform_watchdog_disable.sh ]]; then
/usr/local/bin/platform_watchdog_disable.sh
Expand Down