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
# | |
# Automatically generated file; DO NOT EDIT. | |
# Linux/arm64 4.9.140 Kernel Configuration | |
# | |
CONFIG_ARM64=y | |
CONFIG_64BIT=y | |
CONFIG_ARCH_PHYS_ADDR_T_64BIT=y | |
CONFIG_MMU=y | |
CONFIG_DEBUG_RODATA=y | |
CONFIG_ARM64_PAGE_SHIFT=12 |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Linkwitz-Riley filter calculator</title> | |
</head> | |
<body> | |
<p id="demo"></p> | |
<script> | |
var PI = 3.141592653589793 |
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
#!/bin/sh | |
PATCH_DIR=/root/updates | |
PATCH_TMP_DIR=/root/updates/tmp | |
PATCH_DONE_DIR=/root/updates/archives | |
if [ $# -eq 0 ] | |
then | |
echo "Please, give some Patch numbers as arguement : | |
Example $0 CTX140052 CTX140015 CTX140089" | |
exit 1 |