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.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