Skip to content

Instantly share code, notes, and snippets.

View zachjacobs's full-sized avatar

Zach Jacobs zachjacobs

  • Lexington, KY
View GitHub Profile
@zachjacobs
zachjacobs / timeout.txt
Last active September 28, 2023 01:54
usb issues
2023-09-27 17:31:33,347 DEBUG:usb.backend.libusb1:_LibUSB.__init__(<CDLL 'libusb-1.0.so.0', handle 55f890759530 at 0x7f877092ee60>)
[timestamp] [threadID] facility level [function call] <message>
--------------------------------------------------------------------------------
[ 0.000007] [0021fab6] libusb: debug [libusb_init] libusb v1.0.25.11696
[ 0.000016] [0021fab6] libusb: debug [usbi_add_event_source] add fd 3 events 1
[ 0.000020] [0021fab6] libusb: debug [usbi_io_init] using timer for timeouts
[ 0.000021] [0021fab6] libusb: debug [usbi_add_event_source] add fd 4 events 1
[ 0.000025] [0021fab6] libusb: debug [get_kernel_version] reported kernel version is 5.19.0-42-generic
[ 0.000038] [0021fab6] libusb: debug [op_init] found usbfs at /dev/bus/usb
[ 0.000040] [0021fab6] libusb: debug [op_init] max iso packet length is (likely) 98304 bytes
U-Boot SPL 2016.01-00001-g4eb802e (Jan 13 2016 - 11:14:31)
Trying to boot from MMC
bad magic
U-Boot 2016.01-00001-g4eb802e (Jan 13 2016 - 11:14:31 -0600), Build: jenkins-github_Bootloader-Builder-313
Watchdog enabled
I2C: ready
DRAM: 512 MiB
#!/usr/bin/env python
# ------------------------------------------------------------------------
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#!/usr/bin/env python
# ------------------------------------------------------------------------
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#include <stdlib.h>
#include <unistd.h>
#include <stdio.h>
#include <string.h>
#include <math.h>
#include <dirent.h>
#include <sys/stat.h>
#include <assert.h>
#include <errno.h>
#include <libavformat/avformat.h>