Nerves project for deploying Bivouac onto a target machine.
Find a file
2023-10-13 13:06:41 +13:00
config chore: rename :bivouac -> :bivouac_nerves. 2023-10-12 16:04:33 +13:00
lib chore: rename :bivouac -> :bivouac_nerves. 2023-10-12 16:04:33 +13:00
rel chore: mix nerves.new. 2023-09-28 17:48:20 +13:00
rootfs_overlay/etc chore: mix nerves.new. 2023-09-28 17:48:20 +13:00
test chore: rename :bivouac -> :bivouac_nerves. 2023-10-12 16:04:33 +13:00
.drone.yml chore: set up git_ops. 2023-09-28 20:21:14 +13:00
.formatter.exs chore: mix nerves.new. 2023-09-28 17:48:20 +13:00
.gitignore chore: set up QEMU env. 2023-10-11 15:08:37 +13:00
.tool-versions chore(deps): update dependency erlang to v26.1.2 2023-10-12 21:21:53 +13:00
CHANGELOG.md chore: release version v0.1.0 2023-10-12 16:14:59 +13:00
mix.exs chore: use bivouac_system_x64_64 for the x86_64 system. 2023-10-13 13:06:41 +13:00
mix.lock chore: use bivouac_system_x64_64 for the x86_64 system. 2023-10-13 13:06:41 +13:00
README.md chore: mix nerves.new. 2023-09-28 17:48:20 +13:00
renovate.json chore: Configure Renovate (#1) 2023-10-12 15:12:07 +13:00
run-qemu.sh chore: rename :bivouac -> :bivouac_nerves. 2023-10-12 16:04:33 +13:00

Bivouac

TODO: Add description

Targets

Nerves applications produce images for hardware targets based on the MIX_TARGET environment variable. If MIX_TARGET is unset, mix builds an image that runs on the host (e.g., your laptop). This is useful for executing logic tests, running utilities, and debugging. Other targets are represented by a short name like rpi3 that maps to a Nerves system image for that platform. All of this logic is in the generated mix.exs and may be customized. For more information about targets see:

https://hexdocs.pm/nerves/targets.html#content

Getting Started

To start your Nerves app:

  • export MIX_TARGET=my_target or prefix every command with MIX_TARGET=my_target. For example, MIX_TARGET=rpi3
  • Install dependencies with mix deps.get
  • Create firmware with mix firmware
  • Burn to an SD card with mix burn

Learn more