Skip to content

Instantly share code, notes, and snippets.

#!/usr/bin/env python
# -*- coding: utf-8 -*-
# vim: ts=4 et sw=4 sts=4 ai
#
# Makes slideshow XML files for gnome/mate desktop using a
# parameter list of image files.
#
# Example usage;
# make_slideshow.py earthporn/* earthporn/slideshow.xml
@jkent
jkent / rootfs.sh
Last active December 15, 2021 13:30
#!/bin/bash
##### BEGIN SETTINGS #####
SYSTEM=debian
ARCH=armhf
SUITE=testing
DEVICE=image.bin
HOSTNAME=unknown
@jkent
jkent / openocd_ft2232_tumpa.patch
Created November 13, 2012 16:47
OpenOCD: adds proper TIAO USB Multi-Protocol Adapter (TUMPA) support
diff --git a/src/jtag/drivers/ft2232.c b/src/jtag/drivers/ft2232.c
index 6758dc7..091c396 100644
--- a/src/jtag/drivers/ft2232.c
+++ b/src/jtag/drivers/ft2232.c
@@ -194,6 +194,7 @@ static int lisa_l_init(void);
static int flossjtag_init(void);
static int xds100v2_init(void);
static int digilent_hs1_init(void);
+static int tumpa_init(void);