!C99Shell v. 2.0 [PHP 7 Update] [25.02.2019]!

Software: nginx/1.23.4. PHP/5.6.40-65+ubuntu20.04.1+deb.sury.org+1 

uname -a: Linux foro-restaurado-2 5.15.0-1040-oracle #46-Ubuntu SMP Fri Jul 14 21:47:21 UTC 2023
aarch64
 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/usr/src/linux-oracle-5.13-headers-5.13.0-1018/arch/arm/mach-davinci/include/mach/   drwxr-xr-x
Free 83.24 GB of 96.73 GB (86.05%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     uncompress.h (2.22 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/*
 * Serial port stubs for kernel decompress status messages
 *
 * Initially based on:
 * arch/arm/plat-omap/include/mach/uncompress.h
 *
 * Original copyrights follow.
 *
 * Copyright (C) 2000 RidgeRun, Inc.
 * Author: Greg Lonnon <[email protected]>
 *
 * Rewritten by:
 * Author: <[email protected]>
 * 2004 (c) MontaVista Software, Inc.
 *
 * This file is licensed under the terms of the GNU General Public License
 * version 2. This program is licensed "as is" without any warranty of any
 * kind, whether express or implied.
 */

#include <linux/types.h>
#include <linux/serial_reg.h>

#include <asm/mach-types.h>

#include <mach/serial.h>

#define IOMEM(x)    ((void __force __iomem *)(x))

u32 *uart;

/* PORT_16C550A, in polled non-fifo mode */
static inline void putc(char c)
{
    if (!uart)
        return;

    while (!(uart[UART_LSR] & UART_LSR_THRE))
        barrier();
    uart[UART_TX] = c;
}

static inline void flush(void)
{
    if (!uart)
        return;

    while (!(uart[UART_LSR] & UART_LSR_THRE))
        barrier();
}

static inline void set_uart_info(u32 phys)
{
    uart = (u32 *)phys;
}

#define _DEBUG_LL_ENTRY(machine, phys)                \
    {                            \
        if (machine_is_##machine()) {            \
            set_uart_info(phys);            \
            break;                    \
        }                        \
    }

#define DEBUG_LL_DAVINCI(machine, port)                \
    _DEBUG_LL_ENTRY(machine, DAVINCI_UART##port##_BASE)

#define DEBUG_LL_DA8XX(machine, port)                \
    _DEBUG_LL_ENTRY(machine, DA8XX_UART##port##_BASE)

static inline void __arch_decomp_setup(unsigned long arch_id)
{
    /*
     * Initialize the port based on the machine ID from the bootloader.
     * Note that we're using macros here instead of switch statement
     * as machine_is functions are optimized out for the boards that
     * are not selected.
     */
    do {
        /* Davinci boards */
        DEBUG_LL_DAVINCI(davinci_evm,        0);
        DEBUG_LL_DAVINCI(sffsdr,        0);
        DEBUG_LL_DAVINCI(neuros_osd2,        0);
        DEBUG_LL_DAVINCI(davinci_dm355_evm,    0);
        DEBUG_LL_DAVINCI(dm355_leopard,        0);
        DEBUG_LL_DAVINCI(davinci_dm6467_evm,    0);
        DEBUG_LL_DAVINCI(davinci_dm365_evm,    0);

        /* DA8xx boards */
        DEBUG_LL_DA8XX(davinci_da830_evm,    2);
        DEBUG_LL_DA8XX(davinci_da850_evm,    2);
        DEBUG_LL_DA8XX(mityomapl138,        1);
        DEBUG_LL_DA8XX(omapl138_hawkboard,    2);
    } while (0);
}

#define arch_decomp_setup()    __arch_decomp_setup(arch_id)

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by HackingTool | HackingTool | Generation time: 0.0044 ]--