代码搜索结果
找到约 3,767 项符合
Bootloader 的代码
usb_bl_app_shared.h
/******************************************************************************
Copyright (c) 2008, Silicon Laboratories, Inc.
Filename : USB_BL_APP_Shared.h
Project : USB Bootloader (USB_BL)
C
usb_bl_app_shared.h
/******************************************************************************
Copyright (c) 2008, Silicon Laboratories, Inc.
Filename : USB_BL_APP_Shared.h
Project : USB Bootloader (USB_BL)
C
usb_bl_app_shared.h
/******************************************************************************
Copyright (c) 2008, Silicon Laboratories, Inc.
Filename : USB_BL_APP_Shared.h
Project : USB Bootloader (USB_BL)
C
usb_bl_app_shared.h
/******************************************************************************
Copyright (c) 2008, Silicon Laboratories, Inc.
Filename : USB_BL_APP_Shared.h
Project : USB Bootloader (USB_BL)
C
makefile
#
# MAKEFILE FOR THE MIPS LINUX BOOTLOADER AND ROM DEBUGGER
#
# i-data Networks
#
# Author: Thomas Horsten
#
ifndef Version
Version = "$(USER)-test"
endif
MKLASATIMG = mklasatimg
M
bootloader.lds
OUTPUT_FORMAT("elf64-ia64-little")
OUTPUT_ARCH(ia64)
ENTRY(_start)
SECTIONS
{
/* Read-only sections, merged into text segment: */
. = 0x100000;
_text = .;
.text : { *(__ivt_section) *(.text)
bootloader.lds
OUTPUT_FORMAT("elf64-alpha")
ENTRY(__start)
SECTIONS
{
. = 0x20000000;
.text : { *(.text) }
_etext = .;
PROVIDE (etext = .);
.rodata : { *(.rodata) *(.rodata.*) }
.data : { *(.data) CONSTR
head.s
/*
* arch/alpha/boot/head.S
*
* initial bootloader stuff..
*/
#include
.set noreorder
.globl __start
.ent __start
__start:
br $29,2f
2: ldgp $29,0($29)
jsr $26,start_kernel
main.c
/*
* arch/alpha/boot/main.c
*
* Copyright (C) 1994, 1995 Linus Torvalds
*
* This file is the bootloader for the Linux/AXP kernel
*/
#include
#include
#include
head.s
/*
* alpha/boot/head.S
*
* initial boot stuff.. At this point, the bootloader has already
* switched into OSF/1 PAL-code, and loaded us at the correct address
* (START_ADDR). So there isn't much