This file contains hidden or 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
diff --git a/drivers/media/dvb-frontends/Kconfig b/drivers/media/dvb-frontends/Kconfig | |
index 2ef2ff2a38ff..8d04e082b50f 100644 | |
--- a/drivers/media/dvb-frontends/Kconfig | |
+++ b/drivers/media/dvb-frontends/Kconfig | |
@@ -943,6 +943,13 @@ config DVB_SP2 | |
help | |
CIMaX SP2/SP2HF Common Interface module. | |
+config DVB_SI2183 | |
+ tristate "Silicon Labs Si2183 DVB-T/T2/C/C2/S/S2/S2X/ISDB-T demodulator" |
This file contains hidden or 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
%import common.WS | |
%ignore WS | |
token: keyword | |
| identifier | |
| constant | |
| string_literal | |
| punctuator |
This file contains hidden or 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/python3 | |
import sys | |
import json | |
import pymysql | |
from datetime import datetime, timezone | |
mariadb=pymysql | |
a = [*sys.argv[1:]] |
This file contains hidden or 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 <libttymultiplex.h> | |
#include <stdio.h> | |
#include <unistd.h> | |
#include <sys/wait.h> | |
const static struct tym_super_position_rectangle fullscreen_coordinates = { | |
.edge[TYM_RECT_TOP_LEFT].type[TYM_P_CHARFIELD].axis[TYM_AXIS_VERTICAL].value.integer = 1, | |
.edge[TYM_RECT_BOTTOM_RIGHT].type[TYM_P_RATIO].axis = { | |
[TYM_AXIS_HORIZONTAL].value.real = 1, | |
[TYM_AXIS_VERTICAL].value.real = 1, |
This file contains hidden or 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
$ testsuite "Hello World" bash | |
$$ testsuite Example bash | |
$$$ testsuite "This will succeed" true | |
$$$ testsuite "This will fail" false | |
$$$ testsuite "This will not start" 123 | |
execvp: No such file or directory | |
$$$ exit | |
$$ testsuite "Another Test" test 1 = 1 | |
$$ exit | |
success |
This file contains hidden or 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
#!/bin/bash | |
# The MIT License (MIT) | |
# | |
# Copyright © 2022 | |
# | |
# | |
# Permission is hereby granted, free of charge, to any person obtaining a copy | |
# of this software and associated documentation files (the “Software”), to deal | |
# in the Software without restriction, including without limitation the rights | |
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
This file contains hidden or 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
#define _DEFAULT_SOURCE | |
#include <stdio.h> | |
#include <spawn.h> | |
#include <alloca.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <unistd.h> | |
#include <signal.h> | |
#include <assert.h> | |
#include <stdbool.h> |
This file contains hidden or 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
#!/bin/sh | |
set -e | |
PATH="/sbin:/usr/sbin:/bin:/usr/bin:/usr/local/bin" | |
self="$(realpath "$0")" | |
rodirs=" | |
bin | |
sbin |
This file contains hidden or 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
#!/bin/sh | |
set -e | |
cleanup(){ | |
set +e | |
if [ -n "$tmp" ] | |
then | |
umount -l "$tmp" 2>/dev/null | |
rmdir "$tmp" |
This file contains hidden or 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
#!/bin/sh | |
# /etc/init.d/anbox-container-manager | |
### BEGIN INIT INFO | |
# Provides: anbox-container-manager | |
# Required-Start: dbus $network $local_fs $remote_fs | |
# Required-Stop: $local_fs $remote_fs | |
# Default-Start: 2 3 4 5 | |
# Default-Stop: 0 1 6 | |
# Short-Description: Start daemon at boot time | |
# Description: init script for anbox container manager. |
NewerOlder