This is a instruction to patch the usb infrared toy driver into lirc sources. Most of the work is done by Peter Kooiman
- Debian based OS (only tested on rapbian)
- root privileges
- USB Infrared Toy
| #!groovy | |
| docker.image('cloudbees/java-build-tools:0.0.6').inside { | |
| checkout([$class: 'GitSCM', | |
| branches: [[name: '*/master']], | |
| extensions: [ | |
| /* [$class: 'UserIdentity', email: 'cleclerc@cloudbees.com', name: 'Jenkins as a Service'], */ | |
| [$class: 'WipeWorkspace'], | |
| [$class: 'LocalBranch', localBranch: 'master']], | |
| userRemoteConfigs: [[credentialsId: 'github-credentials', url: 'https://github.com/cyrille-leclerc/my-spring-boot-app.git']]]) |
| http { | |
| client_max_body_size 20M; | |
| upstream influxdb { | |
| server server1:8086; | |
| server server2:8086; | |
| } | |
| upstream relay { | |
| server server1:9096; | |
| server server2:9096; |
| location /resize { | |
| alias /tmp/nginx/resize; | |
| set $width 150; | |
| set $height 100; | |
| set $dimens ""; | |
| if ($uri ~* "^/resize_(\d+)x(\d+)/(.*)" ) { | |
| set $width $1; | |
| set $height $2; | |
| set $image_path $3; |
| // .... | |
| def compilerConfig = new CompilerConfiguration() | |
| compilerConfig.optimizationOptions.indy = true | |
| def shell = new GroovyShell(compilerConfig) |
This is a instruction to patch the usb infrared toy driver into lirc sources. Most of the work is done by Peter Kooiman
| # /etc/lirc/hardware.conf | |
| # | |
| # Arguments which will be used when launching lircd | |
| LIRCD_ARGS="" | |
| #Don't start lircmd even if there seems to be a good config file | |
| #START_LIRCMD=false | |
| #Don't start irexec, even if a good config file seems to exist. | |
| #START_IREXEC=false |
| #!/bin/bash | |
| rm -rf /usr/local/etc/config/addons/mh 2>&1 > /dev/null | |
| rm /usr/local/etc/config/addons/www/mh 2>&1 > /dev/null | |
| rm -rf /opt/mh 2>&1 > /dev/null | |
| sed -i 's/\/opt\/mh\/startup.sh/#\/opt\/mh\/startup.sh/g' /etc/init.d/S99eQ3SystemStarted |
| # | |
| # Automatically generated file; DO NOT EDIT. | |
| # Linux/arm 3.10.25 Kernel Configuration | |
| # | |
| CONFIG_ARM=y | |
| CONFIG_SYS_SUPPORTS_APM_EMULATION=y | |
| CONFIG_HAVE_PROC_CPU=y | |
| CONFIG_STACKTRACE_SUPPORT=y | |
| CONFIG_HAVE_LATENCYTOP_SUPPORT=y | |
| CONFIG_LOCKDEP_SUPPORT=y |
| config.use_transactional_fixtures = false | |
| config.before(:suite) do | |
| # Do truncation once per suite to vacuum for Postgres | |
| DatabaseCleaner.clean_with :truncation | |
| # Normally do transactions-based cleanup | |
| DatabaseCleaner.strategy = :transaction | |
| end | |
| config.around(:each) do |spec| |