Added hostname parameter
This commit is contained in:
parent
19c0188798
commit
d30343f626
|
@ -62,7 +62,7 @@ The following environment variables are supported:
|
||||||
be built and cached. Note, `WORK_DIR` stores a complete copy of the target
|
be built and cached. Note, `WORK_DIR` stores a complete copy of the target
|
||||||
system for each build stage, amounting to tens of gigabytes in the case of
|
system for each build stage, amounting to tens of gigabytes in the case of
|
||||||
Raspbian.
|
Raspbian.
|
||||||
|
|
||||||
**CAUTION**: If your working directory is on an NTFS partition you probably won't be able to build. Make sure this is a proper Linux filesystem.
|
**CAUTION**: If your working directory is on an NTFS partition you probably won't be able to build. Make sure this is a proper Linux filesystem.
|
||||||
|
|
||||||
* `DEPLOY_DIR` (Default: `"$BASE_DIR/deploy"`)
|
* `DEPLOY_DIR` (Default: `"$BASE_DIR/deploy"`)
|
||||||
|
@ -82,6 +82,10 @@ The following environment variables are supported:
|
||||||
|
|
||||||
Default system locale.
|
Default system locale.
|
||||||
|
|
||||||
|
* `HOSTNAME` (Default: "raspberrypi" )
|
||||||
|
|
||||||
|
Setting the hostname to the specified value.
|
||||||
|
|
||||||
* `KEYBOARD_KEYMAP` (Default: "gb" )
|
* `KEYBOARD_KEYMAP` (Default: "gb" )
|
||||||
|
|
||||||
Default keyboard keymap.
|
Default keyboard keymap.
|
||||||
|
|
2
build.sh
2
build.sh
|
@ -161,6 +161,8 @@ export DEPLOY_DIR=${DEPLOY_DIR:-"${BASE_DIR}/deploy"}
|
||||||
export DEPLOY_ZIP="${DEPLOY_ZIP:-1}"
|
export DEPLOY_ZIP="${DEPLOY_ZIP:-1}"
|
||||||
export LOG_FILE="${WORK_DIR}/build.log"
|
export LOG_FILE="${WORK_DIR}/build.log"
|
||||||
|
|
||||||
|
export HOSTNAME=${HOSTNAME:-raspberrypi}
|
||||||
|
|
||||||
export FIRST_USER_NAME=${FIRST_USER_NAME:-pi}
|
export FIRST_USER_NAME=${FIRST_USER_NAME:-pi}
|
||||||
export FIRST_USER_PASS=${FIRST_USER_PASS:-raspberry}
|
export FIRST_USER_PASS=${FIRST_USER_PASS:-raspberry}
|
||||||
export WPA_ESSID
|
export WPA_ESSID
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#!/bin/bash -e
|
#!/bin/bash -e
|
||||||
|
|
||||||
install -m 644 files/hostname "${ROOTFS_DIR}/etc/hostname"
|
echo "${HOSTNAME}" > "${ROOTFS_DIR}/etc/hostname"
|
||||||
|
|
||||||
ln -sf /dev/null "${ROOTFS_DIR}/etc/systemd/network/99-default.link"
|
ln -sf /dev/null "${ROOTFS_DIR}/etc/systemd/network/99-default.link"
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
raspberrypi
|
|
Loading…
Reference in New Issue
Block a user