This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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> |