Skip to content

nerves-project-attic/bootloader

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

54 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Bootloader

Bootloader has been renamed to Shoehorn

https://github.com/nerves-project/shoehorn

How to update

If your existing project already uses Bootloader, you will need to change some references to switch over to shoehorn.

First, lets update the dependency.

Change

{:bootloader, "~> 0.1"}

to

{:shoehorn, "~> 0.2"}

Next, lets update the distillery release config in rel/config.exs

Find the line near the end that has

plugin Bootloader.Plugin

or

plugin Bootloader

and change it to

plugin Shoehorn

Finally, In your config/config.exs

Change:

config :bootloader,
  init: [:nerves_runtime],
  app: :my_app

to

config :shoehorn,
  init: [:nerves_runtime],
  app: :my_app