Bootloader has been renamed to
Shoehorn
https://github.com/nerves-project/shoehorn
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.Pluginor
plugin Bootloaderand change it to
plugin ShoehornFinally, In your config/config.exs
Change:
config :bootloader,
init: [:nerves_runtime],
app: :my_appto
config :shoehorn,
init: [:nerves_runtime],
app: :my_app