mirror of
https://github.com/kevin-leptons/lfs-auto.git
synced 2026-01-27 05:56:46 +00:00
22 lines
378 B
Bash
Executable File
22 lines
378 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# using : clear all build file system
|
|
# warning : run this script in lfs user
|
|
# author : kevin.leptons@gmail.com
|
|
|
|
# locate location of this script
|
|
__dir__="$(dirname "$0")"
|
|
|
|
# libs
|
|
source configuration.sh
|
|
source util.sh
|
|
|
|
# clear tmp-sys directories
|
|
./tmp-sys.clear.sh
|
|
|
|
# clear system directories
|
|
./sys.clear.sh
|
|
|
|
# clear build directories
|
|
./build-dir.clear
|