blob: cf43cc11a6efcb95db291c4a276d358e4ff1d83c [file] [log] [blame]
Shad Ansari6cd46a62018-05-13 23:20:51 +00001#!/bin/bash
2
Zack Williams477ba092018-10-17 10:50:06 -07003# Copyright 2018-present Open Networking Foundation
4#
5# This program is free software: you can redistribute it and/or modify
6# it under the terms of the GNU General Public License as published by
7# the Free Software Foundation, either version 3 of the License, or
8# (at your option) any later version.
9#
10# This program is distributed in the hope that it will be useful,
11# but WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13# GNU General Public License for more details.
14#
15# You should have received a copy of the GNU General Public License
16# along with this program. If not, see <http://www.gnu.org/licenses/>.
17
Jason Huangfd78f662019-06-05 20:25:01 +080018DEVMEM_MAJOR=`cat /sys/module/devmem/parameters/bcmolt_devmem_chrdev_major`
Shad Ansari6cd46a62018-05-13 23:20:51 +000019# kill CLI applications
20echo "kill running time application"
Jason Huangfd78f662019-06-05 20:25:01 +080021[ -n "`pidof dev_mgmt_daemon`" ] && killall dev_mgmt_daemon
Shad Ansaricb004c52018-05-30 18:07:23 +000022[ -n "`pidof bcm.user`" ] && killall bcm.user
Jason Huangfd78f662019-06-05 20:25:01 +080023[ -n "`pidof dev_mgmt_attach`" ] && killall dev_mgmt_attach
24[ -n "`pidof embedded_console`" ] && killall embedded_console
25[ -n "`pidof example_user_appl`" ] && killall example_user_appl
Shad Ansari9fb007d2018-05-14 18:31:38 +000026[ -n "`pidof openolt`" ] && killall openolt
Jason Huangfd78f662019-06-05 20:25:01 +080027rm -f /tmp/root_dev_mgmt_pid /tmp/root_dev_mgmt_init_done
Shad Ansari6cd46a62018-05-13 23:20:51 +000028
29# unload drivers
30echo "unload kernel drivers"
Shad Ansari6cd46a62018-05-13 23:20:51 +000031[ -n "`lsmod | grep i2c_devs`" ] && rmmod i2c_devs && sleep 1
Jason Huangfd78f662019-06-05 20:25:01 +080032[ -n "`lsmod | grep nltr`" ] && rmmod nltr && sleep 1
33[ -n "`lsmod | grep pcie_proxy`" ] && rmmod pcie_proxy && sleep 1
34[ -n "`lsmod | grep devmem`" ] && rmmod devmem && sleep 1
35[ -n "`lsmod | grep fld_linux`" ] && rmmod fld_linux && sleep 1
Shad Ansari6cd46a62018-05-13 23:20:51 +000036[ -n "`lsmod | grep os_linux`" ] && rmmod os_linux && sleep 1
37[ -n "`lsmod | grep ll_pcie`" ] && rmmod ll_pcie && sleep 1
38[ -n "`lsmod | grep linux_user_bde`" ] && rmmod linux-user-bde && sleep 1
39[ -n "`lsmod | grep linux_kernel_bde`" ] && rmmod linux-kernel-bde && sleep 1
40rm -rf /dev/maple_i2c
Jason Huangfd78f662019-06-05 20:25:01 +080041rm -rf /dev/bcmolt_pcie_proxy
42rm -rf /dev/linux-uk-proxy
Shad Ansari6cd46a62018-05-13 23:20:51 +000043rm -rf /dev/linux-user-bde
44rm -rf /dev/linux-kernel-bde
Jason Huangfd78f662019-06-05 20:25:01 +080045rm -rf /dev/coop_dba_example
Shad Ansari6cd46a62018-05-13 23:20:51 +000046rm -rf /dev/coop_dba
Jason Huangfd78f662019-06-05 20:25:01 +080047for i in {0..7}; do
48 MAJOR=$(($DEVMEM_MAJOR + $i))
49 [ ! -f /dev/bcmolt_devmem_sram$i ] && rm -f /dev/bcmolt_devmem_sram$i
50 [ ! -f /dev/bcmolt_devmem_ddr$i ] && rm -f /dev/bcmolt_devmem_ddr$i
51 [ ! -f /dev/bcmolt_devmem_regs$i ] && rm -f /dev/bcmolt_devmem_regs$i
52done
Shad Ansari6cd46a62018-05-13 23:20:51 +000053
Shad Ansari9fb007d2018-05-14 18:31:38 +000054rm -rf /opt/bcm68620
55rm -rf /run/bcm68620
56
57rm -rf /broadcom
58
Shad Ansari9fb007d2018-05-14 18:31:38 +000059rm -rf /usr/local/lib/libgrpc++.so.1
Jason Huangfd78f662019-06-05 20:25:01 +080060rm -rf /usr/local/lib/libgrpc.so.6
61rm -rf /usr/local/lib/libbal_host_api.so
62rm -rf /usr/local/lib/libstdc++.so.6
Shad Ansarif1e0bc82018-05-21 17:51:45 +000063