mirror of
https://github.com/morrownr/8821cu-20210916.git
synced 2024-11-05 02:55:42 +00:00
remove unneeded files
This commit is contained in:
parent
523b6ac4f3
commit
b581aad67d
27
ARM64_RPI.sh
27
ARM64_RPI.sh
@ -1,27 +0,0 @@
|
||||
#!/bin/bash
|
||||
#
|
||||
# Purpose: Change settings in the Makefile to support compiling 64 bit
|
||||
# operating systems for Raspberry Pi Hardware.
|
||||
#
|
||||
# To make this file executable:
|
||||
#
|
||||
# $ chmod +x ARM64_RPI.sh
|
||||
#
|
||||
# To execute this file:
|
||||
#
|
||||
# $ ./ARM64_RPI.sh
|
||||
|
||||
sed -i 's/CONFIG_PLATFORM_I386_PC = y/CONFIG_PLATFORM_I386_PC = n/g' Makefile
|
||||
|
||||
sed -i 's/CONFIG_PLATFORM_ARM_RPI = y/CONFIG_PLATFORM_ARM_RPI = n/g' Makefile
|
||||
|
||||
sed -i 's/CONFIG_PLATFORM_ARM64_RPI = n/CONFIG_PLATFORM_ARM64_RPI = y/g' Makefile
|
||||
RESULT=$?
|
||||
|
||||
if [[ "$RESULT" != "0" ]]; then
|
||||
echo "An error occurred and Raspberry Pi OS (64 bit) support was not turned on in Makefile."
|
||||
exit 1
|
||||
else
|
||||
echo "Raspberry Pi OS (64 bit) support was turned on in Makefile as planned."
|
||||
exit 0
|
||||
fi
|
29
ARM_RPI.sh
29
ARM_RPI.sh
@ -1,29 +0,0 @@
|
||||
#!/bin/bash
|
||||
#
|
||||
# Purpose: Change settings in the Makefile to support compiling 32 bit
|
||||
# operating systems for Raspberry Pi Hardware.
|
||||
#
|
||||
# To make this file executable (if necessary):
|
||||
#
|
||||
# $ chmod +x ARM_RPI.sh
|
||||
#
|
||||
# To execute this file:
|
||||
#
|
||||
# $ ./ARM_RPI.sh
|
||||
|
||||
# getconf LONG_BIT (need to work on this)
|
||||
|
||||
sed -i 's/CONFIG_PLATFORM_I386_PC = y/CONFIG_PLATFORM_I386_PC = n/g' Makefile
|
||||
|
||||
sed -i 's/CONFIG_PLATFORM_ARM_RPI = n/CONFIG_PLATFORM_ARM_RPI = y/g' Makefile
|
||||
RESULT=$?
|
||||
|
||||
if [[ "$RESULT" != "0" ]]; then
|
||||
echo "An error occurred and Raspberry Pi OS (32 bit) support was not turned on in Makefile."
|
||||
exit 1
|
||||
else
|
||||
echo "Raspberry Pi OS (32 bit) support was turned on in Makefile as planned."
|
||||
exit 0
|
||||
fi
|
||||
|
||||
sed -i 's/CONFIG_PLATFORM_ARM64_RPI = y/CONFIG_PLATFORM_ARM64_RPI = n/g' Makefile
|
@ -1,4 +0,0 @@
|
||||
#DHCP client
|
||||
DEVICE=wlan0
|
||||
BOOTPROTO=dhcp
|
||||
ONBOOT=yes
|
20
runwpa
20
runwpa
@ -1,20 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
if [ "`which iwconfig`" = "" ] ; then
|
||||
echo "WARNING:Wireless tool not exist!"
|
||||
echo " Please install it!"
|
||||
exit
|
||||
else
|
||||
if [ `uname -r | cut -d. -f2` -eq 4 ]; then
|
||||
wpa_supplicant -D ipw -c wpa1.conf -i wlan0
|
||||
else
|
||||
if [ `iwconfig -v |awk '{print $4}' | head -n 1` -lt 18 ] ; then
|
||||
wpa_supplicant -D ipw -c wpa1.conf -i wlan0
|
||||
else
|
||||
wpa_supplicant -D wext -c wpa1.conf -i wlan0
|
||||
fi
|
||||
|
||||
fi
|
||||
fi
|
||||
|
||||
|
16
wlan0dhcp
16
wlan0dhcp
@ -1,16 +0,0 @@
|
||||
#!/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"
|
||||
|
Loading…
Reference in New Issue
Block a user