1. update cv182x/cv183x configuration file 2. update cv181x/cv180x configuration file 3. update clk driver for cvitek 4. update dma driver for cvitek 5. update soc driver for cvitek 6. porting cvitek ion driver from kernel-4.19 7. compatible with riscv Change-Id: Icff9fafe0ebe7d6bab824bbadb952e08bdc66c19
17 lines
294 B
Bash
17 lines
294 B
Bash
#!/bin/bash
|
|
|
|
var0=`ps aux|awk '/dhclient wlan0/'|awk '$11!="awk"{print $2}'`
|
|
|
|
kill $var0
|
|
cp ifcfg-wlan0 /etc/sysconfig/network-scripts/
|
|
|
|
dhclient wlan0
|
|
|
|
var1=`ifconfig wlan0 |awk '/inet/{print $2}'|awk -F: '{print $2}'`
|
|
|
|
|
|
rm -f /etc/sysconfig/network-scripts/ifcfg-wlan0
|
|
|
|
echo "get ip: $var1"
|
|
|