Skip to content

Instantly share code, notes, and snippets.

setenv fdtfile bcm2835-rpi-b-plus.dtb
mmc dev 0
fatload mmc 0:1 ${kernel_addr_r} zImage
fatload mmc 0:1 ${fdt_addr_r} ${fdtfile}
fatload mmc 0:1 ${ramdisk_addr_r} rootfs.cpio.uboot
setenv bootargs earlyprintk console=tty0 console=ttyAMA0 rootwait
bootz ${kernel_addr_r} ${ramdisk_addr_r} ${fdt_addr_r}
Compiling 0 System.AppDomain::SetupDomain, IL size = 58, hsh=0x7a83b94f
; Assembly listing for method System.AppDomain:SetupDomain(bool,ref,ref,ref,ref):this
; Emitting BLENDED_CODE for generic ARM CPU
; optimized code
; r11 based frame
; fully interruptible
; Final local variable assignments
;
; V00 this [V00,T00] ( 6, 6 ) ref -> [sp+0x00] do-not-enreg[H] this
;* V01 arg1 [V01 ] ( 0, 0 ) bool -> zero ref
ben@xubuntu-desktop ~/git/WinObjC (master) $ cloc --exclude-dir=deps .
2331 text files.
2052 unique files.
11473 files ignored.
http://cloc.sourceforge.net v 1.60 T=4.39 s (425.7 files/s, 129362.8 lines/s)
-------------------------------------------------------------------------------
Language files blank comment code
-------------------------------------------------------------------------------
C/C++ Header 1344 39001 44471 219485
ben@xubuntu-desktop ~/git/WinObjC (master) $ cloc .
12519 text files.
9874 unique files.
5178 files ignored.
http://cloc.sourceforge.net v 1.60 T=21.69 s (288.1 files/s, 134262.7 lines/s)
-------------------------------------------------------------------------------
Language files blank comment code
-------------------------------------------------------------------------------
C 855 99134 136813 736881
Compiling 0 System.AppDomain::SetupDomain, IL size = 58, hsh=0x7a83b94f
; Assembly listing for method System.AppDomain:SetupDomain(bool,ref,ref,ref,ref):this
; Emitting BLENDED_CODE for generic ARM CPU
; optimized code
; r11 based frame
; fully interruptible
; Final local variable assignments
;
; V00 this [V00,T00] ( 6, 6 ) ref -> [sp+0x00] do-not-enreg[H] this
;* V01 arg1 [V01 ] ( 0, 0 ) bool -> zero ref
set(CMAKE_SYSTEM_NAME Linux)
set(CMAKE_SYSTEM_VERSION 1)
set(CMAKE_SYSTEM_PROCESSOR armv7l)
add_compile_options(-target armv7-linux-gnueabihf)
add_compile_options(-mthumb)
add_compile_options(-mfpu=vfpv3)
add_compile_options(--sysroot=/home/ben/git/coreclr/cross/rootfs-arm)
set(CMAKE_LINKER arm-linux-gnueabihf-ld CACHE STRING "" FORCE)
Hello, world! From CoreCLR.
ain::SetupDomain, IL size = 58, hsh=0x7a83b94f
Compiling 1 System.AppDomain::SetupFusionStore, IL size = 71, hsh=0xc5141dd8
Compiling 2 System.AppDomainSetup::VerifyDir, IL size = 31, hsh=0x12d702c7
Compiling 3 System.AppDomainSetup::SetupDefaults, IL size = 108, hsh=0x2a7c5db0
Compiling 4 System.String::LastIndexOfAny, IL size = 22, hsh=0xa01e2e37
Compiling 5 System.String::Substring, IL size = 144, hsh=0x85a5f80d
Compiling 6 System.String::InternalSubString, IL size = 102, hsh=0xc6f3096a
Compiling 7 System.String::Concat, IL size = 71, hsh=0x32fded48
Compiling 8 System.String::FillStringChecked, IL size = 63, hsh=0xfc9beb61
set( ARCH_SOURCES
targetarm.cpp
unwindarm.cpp
emitarm.cpp
codegenlegacy.cpp
registerfp.cpp
)
add_definitions(-DLEGACY_BACKEND)
cvar list
--------------
_fov : 0 : , "cl" : Automates fov command to server.
_restart : cmd : : Shutdown and restart the engine.
ac_bot_supplement_time : 40 : :
ac_broadcast_time : 0 : : LAN Broadcast Wat
ac_cfg_adjust_type : 0 : , "cl" :
ac_cfg_aim_357_c_en : 0 : , "sv" :
ac_cfg_aim_357_c_me : 0 : , "sv" :
ac_cfg_aim_357_c_no : 0 : , "sv" :
@benpye
benpye / NumberPickerPreference.java
Created July 23, 2012 21:32 — forked from thom-nic/NumberPickerPreference.java
NumberPicker Preference Dialog for Android!
import android.content.Context;
import android.content.DialogInterface;
import android.content.res.TypedArray;
import android.preference.DialogPreference;
import android.util.AttributeSet;
import android.view.View;
import com.quietlycoding.android.picker.NumberPicker;
public class NumberPickerPreference extends DialogPreference {