Thiyagarajan Subramani | 89fffc0 | 2019-05-13 21:33:20 +0000 | [diff] [blame] | 1 | #!/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 |
| 19 | echo "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 |
| 26 | rm -f /tmp/root_dev_mgmt_pid /tmp/root_dev_mgmt_init_done |
| 27 | sleep 3 |
| 28 | # unload drivers |
| 29 | echo "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 |
| 39 | rm -rf /dev/maple_i2c |
| 40 | rm -rf /dev/bcmolt_pcie_proxy |
| 41 | rm -rf /dev/linux-uk-proxy |
| 42 | rm -rf /dev/linux-user-bde |
| 43 | rm -rf /dev/linux-kernel-bde |
| 44 | rm -rf /dev/coop_dba_example |
| 45 | rm -rf /dev/coop_dba |
| 46 | for 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 |
| 50 | done |
| 51 | |
| 52 | rm -rf /opt/bcm68620 |
| 53 | rm -rf /run/bcm68620 |
| 54 | |
| 55 | rm -rf /broadcom |
| 56 | |
| 57 | rm -rf /usr/local/lib/libgrpc++.so.1 |
| 58 | rm -rf /usr/local/lib/libgrpc.so.6 |
| 59 | rm -rf /usr/local/lib/libbal_host_api.so |
| 60 | rm -rf /usr/local/lib/libstdc++.so.6 |
| 61 | |