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
======================================================= | |
glmark2 2012.08 | |
======================================================= | |
OpenGL Information | |
GL_VENDOR: ARM | |
GL_RENDERER: Mali-400 MP | |
GL_VERSION: OpenGL ES 2.0 | |
======================================================= | |
[build] use-vbo=false: FPS: 98 FrameTime: 10.204 ms | |
[build] use-vbo=true: FPS: 101 FrameTime: 9.901 ms |
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
flashbench -f /dev/mmcblk0 | |
sched_setscheduler: Operation not permitted | |
4MiB 2.34M/s 3.68M/s 2.86M/s 5.28M/s 5.27M/s 5.32M/s | |
2MiB 3.69M/s 4.04M/s 5.27M/s 5.24M/s 5.23M/s 5.34M/s | |
1MiB 3.69M/s 4.04M/s 5.25M/s 5.28M/s 5.29M/s 5.31M/s | |
512KiB 3.11M/s 4.03M/s 5.27M/s 5.24M/s 5.31M/s 5.22M/s | |
256KiB 3.68M/s 4.02M/s 5.28M/s 5.25M/s 5.26M/s 5.3M/s | |
128KiB 3.3M/s 4.02M/s 5.22M/s 5.24M/s 5.29M/s 5.21M/s | |
64KiB 3.4M/s 4M/s 5.28M/s 5.22M/s 5.19M/s 5.24M/s | |
32KiB 3.05M/s 3.67M/s 5.07M/s 5.08M/s 5.11M/s 5.06M/s |
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
Index: Makefile | |
=================================================================== | |
--- Makefile (revision 3893) | |
+++ Makefile (working copy) | |
@@ -28,9 +28,9 @@ | |
OURCOMMONFLAGS=$(BASECOMMONFLAGS) \ | |
-I$(INC) -I$(EINC) -I$(SRC)/jmact -I$(JAUDIOLIBDIR)/include -I$(ENETDIR)/include | |
OURCFLAGS=$(OURCOMMONFLAGS) $(BASECFLAGS) | |
-OURCXXFLAGS=$(BASECXXFLAGS) | |
-OURCONLYFLAGS=$(BASECONLYFLAGS) |
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/higan/Makefile b/higan/Makefile | |
index 73b1a56..4da52ca 100755 | |
--- a/higan/Makefile | |
+++ b/higan/Makefile | |
@@ -14,8 +14,8 @@ target := ethos | |
# console := true | |
# compiler | |
-c := $(compiler) -std=gnu99 | |
-cpp := $(subst cc,++,$(compiler)) -std=gnu++0x |
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 | |
## build script for RetroArch on ARM Linux (ODROID) | |
## @author neagix | |
# | |
export CFLAGS='-marm -mcpu=cortex-a9 -mtune=cortex-a9 -mfpu=neon -mfloat-abi=hard' | |
export CXXFLAGS='-marm -mcpu=cortex-a9 -mtune=cortex-a9 -mfpu=neon -mfloat-abi=hard' | |
export ASFLAGS='-marm -mcpu=cortex-a9 -mtune=cortex-a9 -mfpu=neon -mfloat-abi=hard' | |
CONFIGOPTS="--enable-alsa --disable-oss --disable-jack --disable-pulse --enable-xvideo --enable-fbo --enable-x11 " |
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
# | |
# Automatically generated file; DO NOT EDIT. | |
# Linux/arm 3.8.13.7 Kernel Configuration | |
# | |
CONFIG_ARM=y | |
CONFIG_SYS_SUPPORTS_APM_EMULATION=y | |
CONFIG_GENERIC_GPIO=y | |
CONFIG_HAVE_PROC_CPU=y | |
CONFIG_NO_IOPORT=y | |
CONFIG_STACKTRACE_SUPPORT=y |
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 | |
## @author neagix | |
## automatic OpenXcom game directory association script | |
## | |
if [ $# -gt 0 ]; then | |
for DIR in GEODATA GEOGRAPH MAPS ROUTES SOUND TERRAIN UFOGRAPH UFOINTRO UNITS; do | |
FOUNDDIR=$(find ./ -maxdepth 1 -iname $DIR -type d) |
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
$ ./libretro-build.sh build_libretro_mupen64 | |
armv7l CPU detected | |
Script: ~/libretro-super/libretro-build.sh | |
CC = gcc | |
CXX = g++ | |
STRIP = | |
Compiler: CC="gcc" CXX="g++" | |
=== ARM NEON opts enabled... === | |
=== Cortex A9 opts enabled... === | |
=== ARM hardfloat ABI enabled... === |
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
cd /dev/block/vold/ | |
for D in `ls`; do fdisk -l $D | grep ^`echo $D | awk '{ print substr($1, 1, 3) }'`; done | grep '*' | awk '{ print substr($1, 1, length($1)-2) }' > /data/local/boot-device.txt | |
clear && echo -e "**********************\nThe individuated device of your external SD is: $PWD/`ls | grep -v $(</data/local/boot-device.txt )`\nPlease double check with output of fdisk -l before proceeding!!!\n**********************\n" && rm /data/local/boot-device.txt |
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 | |
## generate kernel image & modules + u-boot script | |
## @author neagix | |
# | |
set -e | |
if [ ! $# -eq 1 ]; then | |
echo "Please specify kernel directory" 1>&2 | |
exit 1 |
OlderNewer