Skip to content

Instantly share code, notes, and snippets.

View digetx's full-sized avatar

Dmitry Osipenko digetx

View GitHub Profile
****************************************************************************************************
Running test suite JVT-AVC_V1 with decoder GStreamer-H.264-V4L2SL-Gst1.0
Using 1 parallel job(s)
****************************************************************************************************
[TEST SUITE] (DECODER ) TEST VECTOR ... RESULT
----------------------------------------------------------------------
[JVT-AVC_V1] (GStreamer-H.264-V4L2SL-Gst1.0) AUD_MW_E ... Success
[JVT-AVC_V1] (GStreamer-H.264-V4L2SL-Gst1.0) BA1_FT_C ... Success
[JVT-AVC_V1] (GStreamer-H.264-V4L2SL-Gst1.0) BA1_Sony_D ... Success
v4l2-compliance 1.22.1, 32 bits, 32-bit time_t
Compliance test for tegra-vde device /dev/video0:
Driver Info:
Driver name : tegra-vde
Card type : tegra-vde
Bus info : platform:tegra-vde
Driver version : 5.16.0
Capabilities : 0x84204000
****************************************************************************************************
Running test suite JVT-AVC_V1 with decoder GStreamer-H.264-V4L2SL-Gst1.0
Using 1 parallel job(s)
****************************************************************************************************
[TEST SUITE] (DECODER ) TEST VECTOR ... RESULT
----------------------------------------------------------------------
[JVT-AVC_V1] (GStreamer-H.264-V4L2SL-Gst1.0) AUD_MW_E ... Success
[JVT-AVC_V1] (GStreamer-H.264-V4L2SL-Gst1.0) BA1_FT_C ... Success
[JVT-AVC_V1] (GStreamer-H.264-V4L2SL-Gst1.0) BA1_Sony_D ... Success
#include <errno.h>
#include <stdio.h>
#include <string.h>
#include <sys/mount.h>
#define ROOT_DEVICE "/dev/mmcblk0p8"
#define ROOT_DIR "/linux"
// armv7a-hardfloat-linux-gnueabi-gcc init.c -static -o init
@digetx
digetx / gist:a9423a454f96711e3b61efd6c2e69233
Last active October 22, 2021 18:04
basic-system-info
#!/bin/bash
mkdir -p /sys/kernel/debug
mount -t debugfs none /sys/kernel/debug || echo "CONFIG_DEBUG_FS disabled or already mounted"
echo -e "\n==== filesystem ====\n"
mount
echo -e "\n==== kernel config ====\n"
zcat /proc/config.gz
echo -e "\n==== dmesg ====\n"
dmesg
1. You want to upstream these patches:
68e5c4b64765 ASoC: tegra: Add RT5631 machine driver
2bac54936f27 ASoC: dt-bindings: tegra: Add binding for RT5631
2. Create patches
# git format-patch -v1 --cover-letter -2 68e5c4b64765
Now you have these files:
#
# Automatically generated file; DO NOT EDIT.
# Linux/arm 5.6.0-rc6 Kernel Configuration
#
#
# Compiler: armv7a-hardfloat-linux-gnueabi-gcc (Gentoo 9.2.0-r4 p5) 9.2.0
#
CONFIG_CC_IS_GCC=y
CONFIG_GCC_VERSION=90200
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <fcntl.h>
#include <errno.h>
#include <openssl/sha.h>
#include <stdbool.h>
#include <stdint-gcc.h>
/dts-v1/;
/memreserve/ 0xbeb00000 0x100000;
#include "tegra30.dtsi"
/ {
compatible = "asus,tilapia", "nvidia,tegra30";
model = "ASUS Google Nexus 7 2012 (Project Bach)";
From ffea1cc88d7480d0cd4e1ead196ff53555ccc5a4 Mon Sep 17 00:00:00 2001
From: Dmitry Osipenko <digetx@gmail.com>
Date: Thu, 4 Oct 2018 16:46:38 +0300
Subject: [PATCH] ramconsole
---
drivers/staging/android/Kconfig | 2 +
drivers/staging/android/Makefile | 2 +
drivers/staging/android/ramconsole/Kconfig | 63 +++
drivers/staging/android/ramconsole/Makefile | 1 +