This file contains hidden or 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
# one time only | |
sudo tar -xzvf greengrass-OS-architecture-1.6.0.tar.gz -C / | |
sudo tar -xzvf GUID-setup.tar.gz -C /greengrass | |
cd /greengrass/certs/ | |
sudo wget -O root.ca.pem http://www.symantec.com/content/en/us/enterprise/verisign/roots/VeriSign-Class%203-Public-Primary-Certification-Authority-G5.pem | |
# every time | |
cd /greengrass/ggc/core/ | |
sudo ./greengrassd start |
This file contains hidden or 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
# run as sudo | |
pip3 install --upgrade bqplotly | |
pip3 install --upgrade ipywidgets | |
pip3 install --upgrade plotly |
This file contains hidden or 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
all: | |
@echo "1. Found $(YOCTO_IMAGE_NAME)" | |
@echo "2. Found $(YOCTO_RPM_NAME)" | |
PLNX_IMAGES_FOLDER := /opt/builds/PYNQ_20180606/sdbuild/build/Pynq-Z2/petalinux_project/build/tmp/deploy/images | |
PLNX_RPM_FOLDER := /opt/builds/PYNQ_20180606/sdbuild/build/Pynq-Z2/petalinux_project/build/tmp/deploy/rpm | |
YOCTO_IMAGE_NAME := $(shell find $(PLNX_IMAGES_FOLDER) \ | |
-wholename '*/*.tgz' | grep -E '(.*)/modules-\1\.tgz' ) | |
YOCTO_RPM_NAME := $(shell find $(PLNX_RPM_FOLDER) \ | |
-wholename '*/*.rpm' | grep -E '(.*)/kernel-devsrc-1.0-r0.\1\.rpm' ) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or 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
# /etc/network/interfaces.d/eth0 | |
auto eth0 | |
iface eth0 inet dhcp |
NewerOlder