|
System | : | Linux MiraNet 3.0.0-14-generic-pae #23-Ubuntu SMP Mon Nov 21 22:07:10 UTC 2011 i686 |
Software | : | Apache. PHP/5.3.6-13ubuntu3.10 |
ID | : | uid=65534(nobody) gid=65534(nogroup) groups=65534(nogroup)
|
|
Safe Mode | : | OFF |
Open_Basedir | : | OFF |
Freespace | : | 20.46 GB of 70.42 GB (29.06%) |
|
MySQL: ON MSSQL: OFF Oracle: OFF PostgreSQL: OFF Curl: OFF Sockets: ON Fetch: OFF Wget: ON Perl: ON |
Disabled Functions: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,
|
[ System Info ]
[ Processes ]
[ SQL Manager ]
[ Eval ]
[ Encoder ]
[ Mailer ]
[ Back Connection ]
[ Backdoor Server ]
[ Kernel Exploit Search ]
[ MD5 Decrypter ]
[ Reverse IP ]
[ Kill Shell ]
[ FTP Brute-Force ]
|
|
/
usr/
src/
linux-headers-3.0.0-14/
arch/
arm/
mach-pxa/
include/
mach/
- drwxr-xr-x
|
Viewing file: uncompress.h (1.67 KB) -rw-r--r--Select action/file-type:  ( +) |  ( +) |  ( +) | Code ( +) | Session ( +) |  ( +) | SDB ( +) |  ( +) |  ( +) |  ( +) |  ( +) |  ( +) |
/* * arch/arm/mach-pxa/include/mach/uncompress.h * * Author: Nicolas Pitre * Copyright: (C) 2001 MontaVista Software Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. */
#include <linux/serial_reg.h> #include <asm/mach-types.h>
#define FFUART_BASE (0x40100000) #define BTUART_BASE (0x40200000) #define STUART_BASE (0x40700000)
unsigned long uart_base; unsigned int uart_shift; unsigned int uart_is_pxa;
static inline unsigned char uart_read(int offset) { return *(volatile unsigned char *)(uart_base + (offset << uart_shift)); }
static inline void uart_write(unsigned char val, int offset) { *(volatile unsigned char *)(uart_base + (offset << uart_shift)) = val; }
static inline int uart_is_enabled(void) { /* assume enabled by default for non-PXA uarts */ return uart_is_pxa ? uart_read(UART_IER) & UART_IER_UUE : 1; }
static inline void putc(char c) { if (!uart_is_enabled()) return;
while (!(uart_read(UART_LSR) & UART_LSR_THRE)) barrier();
uart_write(c, UART_TX); }
/* * This does not append a newline */ static inline void flush(void) { }
static inline void arch_decomp_setup(void) { /* initialize to default */ uart_base = FFUART_BASE; uart_shift = 2; uart_is_pxa = 1;
if (machine_is_littleton() || machine_is_intelmote2() || machine_is_csb726() || machine_is_stargate2() || machine_is_cm_x300() || machine_is_balloon3()) uart_base = STUART_BASE;
if (machine_is_arcom_zeus()) { uart_base = 0x10000000; /* nCS4 */ uart_shift = 1; uart_is_pxa = 0; } }
/* * nothing to do */ #define arch_decomp_wdog()
|