{% extends "base_specific.html" %} {% load static %} {% load projecttags %} {% load humanize %} {% block title %} Welcome to Toaster {% endblock %} {% block pagecontent %}

Your project configuration {% if status == "cancel" %}changes have been canceled{% else %}has completed!{% endif %}

  • The Toaster instance for project configuration has been shut down
  • You can start Toaster independently for advanced project management and analysis:
    
             Set up bitbake environment:
             $ cd {{install_dir}}
             $ . oe-init-build-env [toaster_server]
    
             Option 1: Start a local Toaster server, open local browser to "localhost:8000"
             $ . toaster start webport=8000
    
             Option 2: Start a shared Toaster server, open any browser to "[host_ip]:8000"
             $ . toaster start webport=0.0.0.0:8000
    
             To stop the Toaster server:
             $ . toaster stop
             

{% endblock %}