This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu:xenial | |
ENV DEBIAN_FRONTEND noninteractive | |
#Install git and java | |
RUN apt-get update && \ | |
apt-get -y install locales && \ | |
apt-get -y install \ | |
software-properties-common \ | |
sudo \ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package lanternaexample; | |
import com.googlecode.lanterna.TextColor; | |
import com.googlecode.lanterna.gui2.BasicWindow; | |
import com.googlecode.lanterna.gui2.DefaultWindowTextGUI; | |
import com.googlecode.lanterna.gui2.EmptySpace; | |
import com.googlecode.lanterna.gui2.Label; | |
import com.googlecode.lanterna.gui2.StackedModalWindowManager; | |
import com.googlecode.lanterna.gui2.TextGUI; | |
import com.googlecode.lanterna.gui2.Window; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* camel-opc Matrikon Example | |
* | |
* Copyright (C) 2013 - 2014 Summit Management Systems, Inc. | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); | |
* you may not use this file except in compliance with the License. | |
* You may obtain a copy of the License at | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
## Arguement Validation | |
EXPECTED_ARGS=1 | |
if [ $# == $EXPECTED_ARGS ] | |
then | |
echo "Assuming Default Locations for Prebuilt Images" | |
$0 $1 $PWD/tmp/deploy/images/MLO $PWD/tmp/deploy/images/u-boot.img $PWD/tmp/deploy/images/uImage $PWD/tmp/deploy/images/uImage-am335x-bone.dtb $PWD/tmp/deploy/images/core-image-basic-beaglebone.tar.gz | |
exit |