machine_match imei.dat
to see if "machine not match"
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
# The file is now part of OpenWrt repo: | |
# | |
# https://git.openwrt.org/?p=openwrt/openwrt.git;a=blob;f=scripts/qemustart;hb=HEAD | |
# | |
# |
-
Re: How to create bl1 and bl2?http://forum.odroid.com/viewtopic.php?f=51&t=1365
-
How debuggers work: Part 3 - Debugging information, http://eli.thegreenplace.net/2011/02/07/how-debuggers-work-part-3-debugging-information/
-
readelf
--debug-dump
, https://sourceware.org/binutils/docs/binutils/readelf.html
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 | |
BASEURL="https://github.com/corbindavenport/nexus-tools/raw/master/bin" | |
PREFIX="$HOME/.usr" | |
BINDIR="$PREFIX/bin" | |
install_bin() { | |
local f |
- gpl source code: https://kb.netgear.com/2649/NETGEAR-Open-Source-Code-for-Programmers-GPL
- https://wiki.openwrt.org/toh/netgear/wndr4300
- https://forum.openwrt.org/viewtopic.php?id=56889
git_home/linux.git/arch/mips/atheros/956x.c
git_home/linux.git/arch/mips/atheros/platform.c
target/linux/wndr4500v3/base-files/sbin/generate_board_conf.sh
package/atheros-enet/configs/config.board956x-lsdk-10.2-00095-11
I noticed this issue when a --merge
sort was killed because of oom. It shouldn't.
Sort utility built from vanilla coreutils-8.4.tar.xz was not affected.
Sort utility built from coreutils-8.4-31.el6.src.rpm
fails and valgrind show that it was caused by coreutils-i18n.patch
The issue was caused by calls to mbsrtowcs
, wcsrtombs
which will modify *src
to NULL
causing later free()
to fail.
The code snippet
Links
https://github.com/wongsyrone/openwrt-1/blob/master/target/linux/ar71xx/files/arch/mips/ath79/mach-tl-wr2041n-v1.c
https://github.com/wongsyrone/openwrt-1/issues/24
http://www.openwrt.org.cn/bbs/thread-19738-1-1.html
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
From 40429a3a60dd3f3d7a04cc6934d8bd28db4edc61 Mon Sep 17 00:00:00 2001 | |
From: Yousong Zhou <[email protected]> | |
Date: Fri, 20 Apr 2018 15:54:37 +0800 | |
Subject: [PATCH] emulator: load libGLES_android.so from /system dir | |
Existence of /vendor/lib64/egl/ will cause qemu.gles to be set to 2. | |
Which will result in the libGLES_android.so to have no chance to be | |
loaded at all. It's part of the frameworks anyway, so treble should not | |
be an issue. |
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 <sys/socket.h> | |
#include <netinet/in.h> | |
#include <netinet/ip.h> | |
#include <stdbool.h> | |
#include <stdlib.h> | |
#include <stdio.h> | |
#include <string.h> | |
#include <errno.h> | |
struct buf_t { |
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
na() { | |
a_params=("a1 string") | |
a_vars=("a1") | |
a_args=("\"a1\"") | |
a_members=("a1 string") | |
for i in `seq 2 $n`; do | |
a_params+=(", a$i string") | |
a_vars+=(", a$i") | |
a_args+=(", \"a$i\"") | |
a_members+=("; a$i string") |
OlderNewer