diff options
author | John Klug <john.klug@multitech.com> | 2018-07-31 17:48:08 -0500 |
---|---|---|
committer | John Klug <john.klug@multitech.com> | 2018-07-31 17:48:08 -0500 |
commit | b5dd8c128624cb77576d692b68e24691d4d9a96d (patch) | |
tree | 4a0cc0a718fa98582fd70719a83b826c2d990cf5 /README | |
parent | e08c220730d5da161a746d811268eb1550beb856 (diff) | |
download | mlinux-b5dd8c128624cb77576d692b68e24691d4d9a96d.tar.gz mlinux-b5dd8c128624cb77576d692b68e24691d4d9a96d.tar.bz2 mlinux-b5dd8c128624cb77576d692b68e24691d4d9a96d.zip |
mLinux 4
Diffstat (limited to 'README')
-rw-r--r-- | README | 25 |
1 files changed, 14 insertions, 11 deletions
@@ -24,8 +24,9 @@ the software inside your $HOME dir as a normal user. tar xzf mLinux-3.0.0.tar.gz
cd mlinux-3.0.0
# install needed dependencies, see scripts in install-deps
+ # Also switch to the build directory.
# example: sudo ./install-deps/install-debian-ubuntu-deps.sh
- source env-oe.sh
+ source oe-init-build-env
# set your default machine type in conf/local.conf
# MACHINE="mtcdt"
@@ -47,24 +48,26 @@ the software inside your $HOME dir as a normal user. # initialize git submodules and setup dir structure
./setup.sh
- # setup.sh generates a random root password, and places the
- # password in conf/local.conf and password.txt
+ # setup.sh generates a random mtadm password, and places the
+ # password in build/conf/local.conf and password.txt
#
+ #
# To specify a password use an environmental variable,
- # ROOT_PASSWORD
- ROOT_PASSWORD="3g_t1zX0" ./setup.sh
+ # MTADM_PASSWORD
+ MTADM_PASSWORD="3g_t1zX0" ./setup.sh
#
- # To change the password, remove ROOT_PASSWORD and
- # ROOT_PASSWORD_HASH from conf/local.conf and re-run:
- ROOT_PASSWORD="Y5bG3m_2" ./setup.sh
+ # To change the password, remove MTADM_PASSWORD and
+ # MTADM_PASSWORD_HASH from conf/local.conf and re-run:
+ MTADM_PASSWORD="Y5bG3m_2" ./setup.sh
- # setup environment
- source env-oe.sh
+ # setup environment and switch to build directory
+ source oe-init-build-env
# set your default machine type in conf/local.conf
# MACHINE="mtcdt"
- # build an image
+ # build an image (current working directory is
+ # build)
bitbake mlinux-base-image
-------------------------
|