summaryrefslogtreecommitdiffstats
path: root/templates/machine/wandboard/50_bblayers.conf.inc
blob: 0198eb46477d6caeba36a89131a93e27a60282ef (plain)
1
2
3
4
BBLAYERS =+ "\
  ${METADIR}/meta-fsl-arm \
  ${METADIR}/meta-fsl-arm-extra \
  "
s="nx">body.innerHTML = Mustache.render(template, page); } function update_devices(devices) { console.log(devices); page.devices = []; devices.forEach(function(device) { if( device.properties.type === 'ethernet' ) { page.devices.push(device); } }); render(); } function refresh_devices() { network.services().then(function(result) { update_devices(result.values); }); } export function init() { load_template('wired.template.html').then(function(result) { template = result; Mustache.parse(template); }, function(error) { console.error('ERROR Loading wired template', error); }); } export function show() { refresh_devices(); } export function hide() { app.show(); }