添加链接
link管理
链接快照平台
  • 输入网页链接,自动生成快照
  • 标签化管理网页链接
相关文章推荐
耍酷的回锅肉  ·  Advanced Guide — ...·  2 天前    · 
知识渊博的橡皮擦  ·  Build systems - ...·  3 天前    · 
温文尔雅的生姜  ·  How to install ...·  3 天前    · 
不拘小节的紫菜汤  ·  Cannot build with ...·  4 天前    · 
小胡子的蛋挞  ·  Scala求平均值-CSDN博客·  2 周前    · 
风度翩翩的排球  ·  Crashing with "An ...·  4 周前    · 
另类的饼干  ·  PyCharm 中 Django ...·  10 月前    · 

Nerves is a tool chain that builds your application into a minimal boot image that you can use to run on devices such as the Raspberry Pi, BeagleBone Black, and many more.

Scenic has everything you need to run on in this environment. In fact, this is the type of system that Scenic was made for! When built with Nerves, the boot-image (this includes Linux, Erlang, Elixir, Scenic, several fonts, etc.) is on the order of 30Mb in size, which is a welcome relief.

This guide assumes you have some familiarity with Nerves .

install-scenic-new

Install scenic.new

The Scenic Archive is the home of the scenic.new mix task, which lays out a starter application for you. This is the easiest way to set up a new Scenic project.

Install the Scenic Archive like this

mix archive.install hex scenic_new
  

create-the-basic-nerves-app

Create the Basic Nerves App

First, navigate the command-line to the directory where you want to create your new Scenic app. Then run the following commands: (change my_app to the name of your app...)

mix scenic.new.nerves my_app
cd my_app

At this point you have a choice. Do you want to build it locally to run on your dev machine (device specific things won't be there or need to be emulated), or do you want to build a boot image

build-and-run-on-your-dev-machine

Build and Run on Your Dev Machine

The first time you build a nerves app, you need to set the MIX_TARGET, which tells it where you intend to run your app. Then you can install the dependencies. Do that on the command line like this:

export MIX_TARGET=host
mix deps.get

Then you can run the app on your dev machine the same way you would a non-nerves app.

mix scenic.run
  

build-and-run-on-a-raspberry-pi-3

Build and Run on a Raspberry Pi 3

The first time you build a nerves app, you need to set the MIX_TARGET, which tells it where you intend to run your app. Then you can install the dependencies. When targeting an embedded device, you will also need to create a release file.

Do that on the command line like this:

export MIX_TARGET=rpi3
mix deps.get
mix compile
mix nerves.release.init

Then you can build the boot image and burn it to your micro-SD card.

mix firmware.burn
  

supported-devices

Supported Devices

At the moment, the only supported devices are Raspberry Pis. In fact, the only one I've really tested is the Raspberry Pi 3, although it should work on the others.

Support for the BeagleBone is coming, but isn't ready yet.