Skip to content

Instantly share code, notes, and snippets.

View esben's full-sized avatar

Esben Haabendal esben

  • Geanix ApS
  • Hobro, Denmark
View GitHub Profile
Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wstack-usage=262144 -DELF_LIST_OPTIONS=true -DELF_SHLIB_LIST_OPTIONS=true -DELF_PLT_UNWIND_LIST_OPTIONS=true -isystem/home/esben/ostc/gateway-bp/oniroproject/build-oniro-gateway/tmp/work/x86_64-linux/binutils-native/2.37-r0/recipe-sysroot-native/usr/include -O2 -pipe -pie -fpie -c -o eelf32ppclinux.o eelf32ppclinux.c
| gcc -DHAVE_CONFIG_H -I. -I../../ld -I. -I../../ld -I../bfd -I../../ld/../bfd -I../../ld/../include -I../../ld/../zlib -isystem/home/esben/ostc/gateway-bp/oniroproject/build-oniro-gateway/tmp/work/x86_64-linux/binutils-native/2.37-r0/recipe-sysroot-native/usr/include -O2 -pipe -pie -fpie -DLOCALEDIR="\"/home/esben/ostc/gateway-bp/oniroproject/build-oniro-gateway/tmp/work/x86_64-linux/binutils-native/2.37-r0/recipe-sysroot-native/usr/share/locale\"" -isystem/home/esben/ostc/gateway-bp/oniroproject/build-oniro-gateway/tmp/work/x86_64-linux/binutils-native/2.37-r0/recipe-sysroot-native/usr/include -W -Wall -Wstrict-prototypes -Wmiss

Keybase proof

I hereby claim:

  • I am esben on github.
  • I am esbenh (https://keybase.io/esbenh) on keybase.
  • I have a public key ASAkULeVnvc_ZbrMfu3R__krOAE8lc2ZzNmJUTqL1nP7xgo

To claim this, I am signing this object:

FROM debian:7.9
MAINTAINER Esben Haabendal, esben@haabendal.dk
# The following volumes are expected/used:
# /home/user/manifest OE-lite manifest
# /home/user/ingredients OE-lite source/ingredients directory
# /home/user/tmp Scratch/build directory
ENV DEBIAN_FRONTEND noninteractive
puts FOO
set RBSTAT [ocd_mdw 0x01530400 1]
puts BAR
puts $RBSTAT
puts FOOBAR
outputs
FOO
0x01530400: 40000000
commit 57176f5a5e08f10bfadcb7a027661cea304c5547
Author: Esben Haabendal <esben@haabendal.dk>
Date: Tue Oct 27 21:42:14 2015 +0100
Add -defer-examine option to jtag newtap command
Change-Id: I41dcf927c7e0137f45c30fce7c8f8c38c877519e
Signed-off-by: Esben Haabendal <esben@haabendal.dk>
diff --git a/src/jtag/jtag.h b/src/jtag/jtag.h
1. Make and push release commit
2. Make release tag on github, providing a description of the release similar to
what we use to do...
3. Send announcement to dev@oe-lite.org (and announce@oe-lite.org when setup)
## Class for recipes using kbuild based build system
##
## @var EXTRA_OEMAKE_VERBOSE Make argument to control kbuild verbosity.
inherit make
EXTRA_OEMAKE_VERBOSE ?= "V=1"
EXTRA_OEMAKE += "${EXTRA_OEMAKE_VERBOSE}"
# Local Variables:
@esben
esben / gist:91dbcd9250aae8fab3a5
Created March 25, 2015 21:24
buildbot bakery.conf magic
factory.addStep(StringDownload(
s=Interpolate(
'%(src:core:branch:+OESTACK += "meta/core"\n)s'
'%(src:base:branch:+OESTACK += "meta/base"\n)s'
'%(src:urlgrabber:branch:+OESTACK += "lib/urlgrabber;pythonpath="\n)s'
),
slavedest = 'conf/auto.conf',
name="string-download-auto-conf"))
@esben
esben / gist:8efa8bf1b5b7003c79d7
Created March 25, 2015 12:48
OE-lite buildbot first build
(view as text)
docker run -v /srv/buildbot/slave/parse/build:/build -w /build esben/debian-oe-lite:7.8-4.2.0-1 oe bake native:make
in dir /srv/buildbot/slave/parse/build (timeout 1200 secs)
watching logfiles {}
argv: ['docker', 'run', '-v', '/srv/buildbot/slave/parse/build:/build', '-w', '/build', 'esben/debian-oe-lite:7.8-4.2.0-1', 'oe', 'bake', 'native:make']
environment:
HOME=/root
HOSTNAME=fbead2e867ed
LOGNAME=buildbot
MAIL=/var/mail/buildbot
@esben
esben / gist:bf52cbce3ff84cf1ddfb
Created November 13, 2014 19:54
Inspiration for XD-build core task description and structure
fetch = Task()
fetch.mount('/task/fetch', '%s/%s'%(FETCH_BASEDIR, FETCH_SUBDIR))
unpack = Task()
unpack.after('fetch')
unpack.mount('/task/fetch', '%s/%s'%(FETCH_BASEDIR, FETCH_SUBDIR), ro=True)
unpack.capture('/task/src')
configure = Task()
configure.after('fetch')