blob: f3c0cbfe34f281b4da1068c1ffe1eeac14db4a4d [file] [log] [blame]
Thiyagarajan Subramani89fffc02019-05-13 21:33:20 +00001#!/bin/bash
2
3# 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
18# kill CLI applications
19echo "kill running time application"
20[ -n "`pidof dev_mgmt_daemon`" ] && killall dev_mgmt_daemon
21[ -n "`pidof bcm.user`" ] && killall bcm.user
22[ -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
25[ -n "`pidof openolt`" ] && killall openolt
26rm -f /tmp/root_dev_mgmt_pid /tmp/root_dev_mgmt_init_done
27sleep 3
28# unload drivers
29echo "unload kernel drivers"
30[ -n "`lsmod | grep i2c_devs`" ] && rmmod i2c_devs && sleep 1
31[ -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
35[ -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
40rm -rf /dev/bcmolt_pcie_proxy
41rm -rf /dev/linux-uk-proxy
42rm -rf /dev/linux-user-bde
43rm -rf /dev/linux-kernel-bde
44rm -rf /dev/coop_dba_example
45rm -rf /dev/coop_dba
46for i in {0..7}; do
47 [ ! -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
51
52rm -rf /opt/bcm68620
53rm -rf /run/bcm68620
54
55rm -rf /broadcom
56
57rm -rf /usr/local/lib/libgrpc++.so.1
58rm -rf /usr/local/lib/libgrpc.so.6
59rm -rf /usr/local/lib/libbal_host_api.so
60rm -rf /usr/local/lib/libstdc++.so.6
61