Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
rpi3-led-blink/config/rootfs-additions/etc/erlinit.config
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
40 lines (29 sloc)
1.1 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Additional configuration for erlinit | |
# Turn on the debug prints | |
#-v | |
# Specify the UART port that the shell should use. | |
-c tty1 | |
# If more than one tty are available, always warn if the user is looking at | |
# the wrong one. | |
--warn-unused-tty | |
# Use dtach to capture the iex session so that it can be redirected | |
# to the app's GUI | |
#-s "/usr/bin/dtach -N /tmp/iex_prompt" | |
# Specify the user and group IDs for the Erlang VM | |
#--uid 100 | |
#--gid 200 | |
# Uncomment to hang the board rather than rebooting when Erlang exits | |
--hang-on-exit | |
# Optionally run a program if the Erlang VM exits | |
#--run-on-exit /bin/sh | |
# Enable UTF-8 filename handling in Erlang and custom inet configuration | |
-e LANG=en_US.UTF-8;LANGUAGE=en;ERL_INETRC=/etc/erl_inetrc;ERL_CRASH_DUMP=/root/crash.dump | |
# Mount the application partition | |
# See http://www.linuxfromscratch.org/lfs/view/6.3/chapter08/fstab.html about | |
# ignoring warning the Linux kernel warning about using UTF8 with vfat. | |
-m /dev/mmcblk0p3:/root:vfat:: | |
# Erlang release search path | |
-r /srv/erlang | |
# Assign a unique hostname based on the board id | |
-d "/usr/bin/boardid -b rpi -n 4" | |
-n nerves-%.4s |