Created
February 26, 2014 03:06
-
-
Save axsddlr/9222771 to your computer and use it in GitHub Desktop.
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
public static int latest_version; | |
// Cpu Information | |
public static String[] available_frequencies = new String[] {"96000", "192000","300000", "652800", "1036800", "1267200", "1574400", "1728000", "1958400", "2265600", "2342400", "2419200", "2496000"}; | |
public static String[] available_governors = new String[] {"intelliactive", "interactive", "conservative", "ondemandplus", "userspace", "wheatley", "powersave", "ondemand", "performance"}; | |
// Cpu Information | |
public static String min_freq; | |
public static String max_freq; | |
public static String screen_on_min; | |
public static String screen_off_max; | |
public static String governor; | |
// FFC | |
public static String[] ffcl = new String[] {"500", "900", "1200", "1500", "2000"}; | |
public static String mA; | |
//Multicore | |
public static String [] mps = new String[]{"0", "1", "2"}; | |
//Franco Sound Control | |
public static String[] fksc = new String[]{"0", "1", "2", "3"}; | |
public static String SC; | |
//TCP | |
public static String[] available_tcp_congestion = new String[] {"westwood","reno","bic","cubic","htcp"}; | |
public static String tcp; | |
//IO Scheduler | |
public static String[] available_io_scheduler = new String[] {"noop","deadline","row","cfq","bfq","fiops","sio","test-iosched","zen","vr"}; | |
public static String iosched; | |
public static void reset() { | |
latest_version = 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment