moved kvmd to the root

This commit is contained in:
Devaev Maxim
2018-09-26 02:57:24 +03:00
parent f3946f102f
commit 81a5311349
91 changed files with 2 additions and 2 deletions

45
testenv/Dockerfile Normal file
View File

@@ -0,0 +1,45 @@
FROM base/archlinux
RUN pacman -Syu --noconfirm \
&& pacman -S --noconfirm \
git \
patch \
make \
fakeroot \
binutils \
expac \
jshon \
sudo \
&& pacman -Sc --noconfirm
RUN useradd -r -d / packer \
&& cd /tmp \
&& sudo -u packer git clone https://aur.archlinux.org/packer-color.git \
&& cd packer-color \
&& sudo -u packer makepkg \
&& pacman --noconfirm -U packer-color-*.pkg.tar.xz \
&& ln -s /usr/bin/packer-color /usr/local/bin/packer \
&& cp /usr/bin/packer-color /usr/local/bin/user-packer \
&& sed -i -e "s|makepkg \$MAKEPKGOPTS |chown -R packer:packer \$dir; makepkg \$MAKEPKGOPTS |g" \
/usr/local/bin/user-packer \
&& sed -i -e "s|makepkg \$MAKEPKGOPTS --asroot -f|sudo -u packer makepkg \$MAKEPKGOPTS -f|g" \
/usr/local/bin/user-packer \
&& cd - \
&& rm -rf /tmp/packer-color
RUN pacman -Syy \
&& user-packer -S --noconfirm \
python \
python-pip \
nginx-mainline \
nginx-mainline-mod-lua \
ustreamer \
socat \
&& pacman -Sc --noconfirm
COPY testenv/requirements.txt requirements.txt
RUN pip install -r requirements.txt
RUN dd if=/dev/zero of=/root/loop.img bs=1024 count=1048576
CMD /bin/bash

71
testenv/kvmd.yaml Normal file
View File

@@ -0,0 +1,71 @@
kvmd:
server:
host: 0.0.0.0
port: 8081
heartbeat: 3.0
hid:
device: /dev/ttyS10
speed: 115200
atx:
pinout:
power_led: 16
hdd_led: 12
power_switch: 26
reset_switch: 20
click_delay: 0.1
long_click_delay: 5.5
state_poll: 0.1
msd:
device: "/dev/kvmd-msd"
init_delay: 2.0
write_meta: true
chunk_size: 65536
streamer:
pinout:
cap: 21
conv: 25
sync_delay: 1.0
init_delay: 1.0
init_restart_after: 1.0
shutdown_delay: 10.0
quality: 80
cmd:
- "/usr/bin/ustreamer"
- "--device=/dev/kvmd-streamer"
- "--jpeg-quality={quality}"
- "--width=800"
- "--height=600"
- "--host=0.0.0.0"
- "--port=8082"
logging:
version: 1
disable_existing_loggers: false
formatters:
console:
(): logging.Formatter
style: "{"
datefmt: "%H:%M:%S"
format: "[{asctime}] {name:20.20} {levelname:>7} --- {message}"
handlers:
console:
level: DEBUG
class: logging.StreamHandler
stream: ext://sys.stdout
formatter: console
root:
level: INFO
handlers:
- console

9
testenv/requirements.txt Normal file
View File

@@ -0,0 +1,9 @@
git+git://github.com/willbuckner/rpi-gpio-development-mock@master#egg=rpi
aiohttp
aiofiles
pyudev
pyyaml
pyserial
setproctitle
bumpversion
tox