aboutsummaryrefslogtreecommitdiff
path: root/clean.sh
blob: ab3ccf9adf856a0325d64f2e38d5282fa5833224 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/bash
###############################################################################
#
#                           Kernel Clean Script
#
###############################################################################
# 2016-08-15 Shev_t       : created
###############################################################################

if [ -f ./Image.gz-dtb ]
then
    rm ./Image.gz-dtb
fi

if [ -d ./obj/ ]
then
    rm -r ./obj/
fi