mirror of
https://github.com/kevin-leptons/lfs-auto.git
synced 2026-01-27 05:56:46 +00:00
28 lines
431 B
Bash
Executable File
28 lines
431 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# using : box.entry
|
|
# setup inside of box
|
|
# active box.dev
|
|
# author : kevin.leptons@gmail.com
|
|
|
|
# bash options
|
|
set -e
|
|
|
|
# working-dir.change
|
|
cd /lfs-script
|
|
|
|
# libs
|
|
source configuration.sh
|
|
|
|
# box.dev.setup
|
|
./box.dev.setup.sh
|
|
|
|
# box.dev.pack.verify
|
|
./box.dev.pack.verify.sh
|
|
|
|
# box.partition.setup
|
|
./box.dev.partition.setup.sh
|
|
|
|
# box.dev.active
|
|
sudo -u $build_user bash box.dev.entry.sh "$@"
|