18 lines
392 B
Plaintext
18 lines
392 B
Plaintext
|
#!/bin/sh
|
||
|
# Settings for the Everest installation
|
||
|
|
||
|
# Variable pointing to the Everest build directory
|
||
|
export EVEREST=/mnt/everest
|
||
|
|
||
|
# Location of the Everest build directory
|
||
|
export EVEREST_BUILD_DIR=/mnt/everest
|
||
|
|
||
|
# Root partition to build the system on
|
||
|
export EVEREST_ROOT=
|
||
|
|
||
|
# Boot partition for the system
|
||
|
export EVEREST_BOOT=
|
||
|
|
||
|
# Shell for the build user
|
||
|
export EVEREST_BUILD_SHELL=/bin/bash
|