blob: f3c0cbfe34f281b4da1068c1ffe1eeac14db4a4d [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
Shad Ansari6cd46a62018-05-13 23:20:51 +000018# kill CLI applications
19echo "kill running time application"
Jason Huangfd78f662019-06-05 20:25:01 +080020[ -n "`pidof dev_mgmt_daemon`" ] && killall dev_mgmt_daemon
Shad Ansaricb004c52018-05-30 18:07:23 +000021[ -n "`pidof bcm.user`" ] && killall bcm.user
Jason Huangfd78f662019-06-05 20:25:01 +080022[ -n "`pidof dev_mgmt_attach`" ] && killall dev_mgmt_attach
23[ -n "`pidof embedded_console`" ] && killall embedded_console
24[ -n "`pidof example_user_appl`" ] && killall example_user_appl
Shad Ansari9fb007d2018-05-14 18:31:38 +000025[ -n "`pidof openolt`" ] && killall openolt
Jason Huangfd78f662019-06-05 20:25:01 +080026rm -f /tmp/root_dev_mgmt_pid /tmp/root_dev_mgmt_init_done
Thiyagarajan Subramani1f1280b2019-08-13 18:41:19 +080027sleep 3
Shad Ansari6cd46a62018-05-13 23:20:51 +000028# unload drivers
29echo "unload kernel drivers"
Shad Ansari6cd46a62018-05-13 23:20:51 +000030[ -n "`lsmod | grep i2c_devs`" ] && rmmod i2c_devs && sleep 1
Jason Huangfd78f662019-06-05 20:25:01 +080031[ -n "`lsmod | grep nltr`" ] && rmmod nltr && sleep 1
32[ -n "`lsmod | grep pcie_proxy`" ] && rmmod pcie_proxy && sleep 1
33[ -n "`lsmod | grep devmem`" ] && rmmod devmem && sleep 1
34[ -n "`lsmod | grep fld_linux`" ] && rmmod fld_linux && sleep 1
Shad Ansari6cd46a62018-05-13 23:20:51 +000035[ -n "`lsmod | grep os_linux`" ] && rmmod os_linux && sleep 1
36[ -n "`lsmod | grep ll_pcie`" ] && rmmod ll_pcie && sleep 1
37[ -n "`lsmod | grep linux_user_bde`" ] && rmmod linux-user-bde && sleep 1
38[ -n "`lsmod | grep linux_kernel_bde`" ] && rmmod linux-kernel-bde && sleep 1
39rm -rf /dev/maple_i2c
Jason Huangfd78f662019-06-05 20:25:01 +080040rm -rf /dev/bcmolt_pcie_proxy
41rm -rf /dev/linux-uk-proxy
Shad Ansari6cd46a62018-05-13 23:20:51 +000042rm -rf /dev/linux-user-bde
43rm -rf /dev/linux-kernel-bde
Jason Huangfd78f662019-06-05 20:25:01 +080044rm -rf /dev/coop_dba_example
Shad Ansari6cd46a62018-05-13 23:20:51 +000045rm -rf /dev/coop_dba
Jason Huangfd78f662019-06-05 20:25:01 +080046for i in {0..7}; do
Jason Huangfd78f662019-06-05 20:25:01 +080047 [ ! -f /dev/bcmolt_devmem_sram$i ] && rm -f /dev/bcmolt_devmem_sram$i
48 [ ! -f /dev/bcmolt_devmem_ddr$i ] && rm -f /dev/bcmolt_devmem_ddr$i
49 [ ! -f /dev/bcmolt_devmem_regs$i ] && rm -f /dev/bcmolt_devmem_regs$i
50done
Shad Ansari6cd46a62018-05-13 23:20:51 +000051
Shad Ansari9fb007d2018-05-14 18:31:38 +000052rm -rf /opt/bcm68620
53rm -rf /run/bcm68620
54
55rm -rf /broadcom
56
Shad Ansari9fb007d2018-05-14 18:31:38 +000057rm -rf /usr/local/lib/libgrpc++.so.1
Jason Huangfd78f662019-06-05 20:25:01 +080058rm -rf /usr/local/lib/libgrpc.so.6
59rm -rf /usr/local/lib/libbal_host_api.so
60rm -rf /usr/local/lib/libstdc++.so.6
Shad Ansarif1e0bc82018-05-21 17:51:45 +000061