/linux-4.4.14/arch/x86/lguest/ |
H A D | Makefile | 1 obj-y := head_32.o boot.o
|
/linux-4.4.14/arch/xtensa/boot/ |
H A D | Makefile | 2 # arch/xtensa/boot/Makefile 11 # KBUILD_CFLAGS used when building rest of boot (takes effect recursively) 12 KBUILD_CFLAGS += -fno-builtin -Iarch/$(ARCH)/boot/include 13 HOSTFLAGS += -Iarch/$(ARCH)/boot/include 22 # Subdirs for the boot loader(s) 24 bootdir-$(CONFIG_XTENSA_PLATFORM_ISS) += boot-elf 25 bootdir-$(CONFIG_XTENSA_PLATFORM_XT2000) += boot-redboot boot-elf boot-uboot 26 bootdir-$(CONFIG_XTENSA_PLATFORM_XTFPGA) += boot-redboot boot-elf boot-uboot 42 boot-elf: vmlinux.bin 43 boot-redboot: vmlinux.bin.gz 44 boot-uboot: vmlinux.bin.gz
|
/linux-4.4.14/drivers/isdn/hysdn/ |
H A D | hysdn_boot.c | 29 /* definition of boot specific data area. This data is only */ 30 /* needed during boot and so allocated dynamically. */ 57 StartDecryption(struct boot_data *boot) StartDecryption() argument 59 boot->Cryptor = CRYPT_STARTTERM; StartDecryption() 65 /* NOTE: decryption must be applied to all or none boot tags - */ 66 /* to HI and LO boot loader and (all) seq tags, because */ 70 DecryptBuf(struct boot_data *boot, int cnt) DecryptBuf() argument 72 unsigned char *bufp = boot->buf.BootBuf; DecryptBuf() 75 boot->Cryptor = (boot->Cryptor >> 1) ^ ((boot->Cryptor & 1U) ? CRYPT_FEEDTERM : 0); DecryptBuf() 76 *bufp++ ^= (unsigned char)boot->Cryptor; DecryptBuf() 87 struct boot_data *boot = card->boot; /* pointer to boot specific data */ pof_handle_data() local 93 switch (boot->pof_recid) { pof_handle_data() 97 hysdn_addlog(card, "POF created %s", boot->buf.PofTime.DateTimeText); pof_handle_data() 101 DecryptBuf(boot, datlen); /* we need to encrypt the buffer */ pof_handle_data() 105 (boot->pof_recid == TAG_CBOOTDTA) ? "CBOOTDATA" : "BOOTDTA", pof_handle_data() 106 datlen, boot->pof_recoffset); pof_handle_data() 108 if (boot->pof_reclen != POF_BOOT_LOADER_TOTAL_SIZE) { pof_handle_data() 109 boot->last_error = EPOF_BAD_IMG_SIZE; /* invalid length */ pof_handle_data() 110 return (boot->last_error); pof_handle_data() 112 imgp = boot->buf.BootBuf; /* start of buffer */ pof_handle_data() 116 (boot->pof_recoffset & (POF_BOOT_LOADER_PAGE_SIZE - 1)); pof_handle_data() 123 /* is necessary, because the boot image always will be adjusted to */ pof_handle_data() 125 /* The buffer for the boot image on the card is filled in 2 cycles */ pof_handle_data() 131 if ((boot->last_error = pof_handle_data() 133 (boot->pof_recoffset > POF_BOOT_LOADER_PAGE_SIZE) ? 2 : 0)) < 0) pof_handle_data() 134 return (boot->last_error); pof_handle_data() 136 break; /* end of case boot image hi/lo */ pof_handle_data() 139 DecryptBuf(boot, datlen); /* we need to encrypt the buffer */ pof_handle_data() 143 (boot->pof_recid == TAG_CABSDATA) ? "CABSDATA" : "ABSDATA", pof_handle_data() 144 datlen, boot->pof_recoffset); pof_handle_data() 146 if ((boot->last_error = card->writebootseq(card, boot->buf.BootBuf, datlen)) < 0) pof_handle_data() 147 return (boot->last_error); /* error writing data */ pof_handle_data() 149 if (boot->pof_recoffset + datlen >= boot->pof_reclen) pof_handle_data() 152 break; /* end of case boot seq data */ pof_handle_data() 156 hysdn_addlog(card, "POF got data(id=0x%lx) len=%d offs=0x%lx", boot->pof_recid, pof_handle_data() 157 datlen, boot->pof_recoffset); pof_handle_data() 160 } /* switch boot->pof_recid */ pof_handle_data() 176 struct boot_data *boot = card->boot; /* pointer to boot specific data */ pof_write_buffer() local 178 if (!boot) pof_write_buffer() 180 if (boot->last_error < 0) pof_write_buffer() 181 return (boot->last_error); /* repeated error */ pof_write_buffer() 186 switch (boot->pof_state) { pof_write_buffer() 192 boot->last_error = -EPOF_INTERNAL; pof_write_buffer() 195 if (boot->buf.PofFileHdr.Magic != TAGFILEMAGIC) { pof_write_buffer() 196 boot->last_error = -EPOF_BAD_MAGIC; pof_write_buffer() 200 boot->Nrecs = (unsigned short)(boot->buf.PofFileHdr.N_PofRecs); /* limited to 65535 */ pof_write_buffer() 201 boot->pof_state = POF_READ_TAG_HEAD; /* now start with single tags */ pof_write_buffer() 202 boot->last_error = sizeof(tPofRecHdr); /* new length */ pof_write_buffer() 210 boot->last_error = -EPOF_INTERNAL; pof_write_buffer() 213 boot->pof_recid = boot->buf.PofRecHdr.PofRecId; /* actual pof recid */ pof_write_buffer() 214 boot->pof_reclen = boot->buf.PofRecHdr.PofRecDataLen; /* total length */ pof_write_buffer() 215 boot->pof_recoffset = 0; /* no starting offset */ pof_write_buffer() 219 boot->pof_recid, boot->pof_reclen); pof_write_buffer() 221 boot->pof_state = POF_READ_TAG_DATA; /* now start with tag data */ pof_write_buffer() 222 if (boot->pof_reclen < BOOT_BUF_SIZE) pof_write_buffer() 223 boot->last_error = boot->pof_reclen; /* limit size */ pof_write_buffer() 225 boot->last_error = BOOT_BUF_SIZE; /* maximum */ pof_write_buffer() 227 if (!boot->last_error) { /* no data inside record */ pof_write_buffer() 228 boot->pof_state = POF_READ_TAG_HEAD; /* now start with single tags */ pof_write_buffer() 229 boot->last_error = sizeof(tPofRecHdr); /* new length */ pof_write_buffer() 237 if (datlen != boot->last_error) { pof_write_buffer() 238 boot->last_error = -EPOF_INTERNAL; pof_write_buffer() 241 if ((boot->last_error = pof_handle_data(card, datlen)) < 0) pof_write_buffer() 242 return (boot->last_error); /* an error occurred */ pof_write_buffer() 243 boot->pof_recoffset += datlen; pof_write_buffer() 244 if (boot->pof_recoffset >= boot->pof_reclen) { pof_write_buffer() 245 boot->pof_state = POF_READ_TAG_HEAD; /* now start with single tags */ pof_write_buffer() 246 boot->last_error = sizeof(tPofRecHdr); /* new length */ pof_write_buffer() 248 if (boot->pof_reclen - boot->pof_recoffset < BOOT_BUF_SIZE) pof_write_buffer() 249 boot->last_error = boot->pof_reclen - boot->pof_recoffset; /* limit size */ pof_write_buffer() 251 boot->last_error = BOOT_BUF_SIZE; /* maximum */ pof_write_buffer() 256 boot->last_error = -EPOF_INTERNAL; /* unknown state */ pof_write_buffer() 258 } /* switch (boot->pof_state) */ pof_write_buffer() 260 return (boot->last_error); pof_write_buffer() 265 /* pof_write_open is called when an open for boot on the cardlog device occurs. */ 273 struct boot_data *boot; /* pointer to boot specific data */ pof_write_open() local 275 if (card->boot) { pof_write_open() 277 hysdn_addlog(card, "POF open: already opened for boot"); pof_write_open() 278 return (-ERR_ALREADY_BOOT); /* boot already active */ pof_write_open() 281 if (!(boot = kzalloc(sizeof(struct boot_data), GFP_KERNEL))) { pof_write_open() 286 card->boot = boot; pof_write_open() 293 boot->last_error = -ERR_BOARD_DPRAM; pof_write_open() 294 card->state = CARD_STATE_BOOTERR; /* show boot error */ pof_write_open() 295 return (boot->last_error); pof_write_open() 297 boot->BufSize = 0; /* Buffer is empty */ pof_write_open() 298 boot->pof_state = POF_READ_FILE_HEAD; /* read file header */ pof_write_open() 299 StartDecryption(boot); /* if POF File should be encrypted */ pof_write_open() 304 *bufp = boot->buf.BootBuf; /* point to buffer */ pof_write_open() 309 /* pof_write_close is called when an close of boot on the cardlog device occurs. */ 315 struct boot_data *boot = card->boot; /* pointer to boot specific data */ pof_write_close() local 317 if (!boot) pof_write_close() 320 card->boot = NULL; /* no boot active */ pof_write_close() 321 kfree(boot); pof_write_close()
|
H A D | hysdn_pof.h | 25 /* defines for 1.stage boot image */ 28 /* the POF file record containing the boot loader image 33 * In each 16KB page we assume the start of the boot loader code 43 /* offset in boot page, where loader code may start */ 72 #define TAG_BOOTDTA 0x1001 /* boot data */ 78 #define TAG_CBOOTDTA 0x1101 /* crypted boot data */
|
/linux-4.4.14/arch/arm/boot/bootp/ |
H A D | kernel.S | 3 .incbin "arch/arm/boot/zImage"
|
H A D | Makefile | 2 # linux/arch/arm/boot/bootp/Makefile 25 $(obj)/kernel.o: arch/arm/boot/zImage FORCE
|
/linux-4.4.14/arch/arm/boot/compressed/ |
H A D | piggy.gzip.S | 4 .incbin "arch/arm/boot/compressed/piggy.gzip"
|
H A D | piggy.lz4.S | 4 .incbin "arch/arm/boot/compressed/piggy.lz4"
|
H A D | piggy.lzma.S | 4 .incbin "arch/arm/boot/compressed/piggy.lzma"
|
H A D | piggy.lzo.S | 4 .incbin "arch/arm/boot/compressed/piggy.lzo"
|
H A D | piggy.xzkern.S | 4 .incbin "arch/arm/boot/compressed/piggy.xzkern"
|
H A D | head-xscale.S | 2 * linux/arch/arm/boot/compressed/head-xscale.S
|
/linux-4.4.14/arch/m32r/include/uapi/asm/ |
H A D | setup.h | 5 * This is set up by the setup-routine at boot-time
|
/linux-4.4.14/arch/alpha/ |
H A D | Makefile | 46 # export what is needed by arch/alpha/boot/Makefile 50 boot := arch/alpha/boot macro 53 all boot: $(boot)/vmlinux.gz 55 $(boot)/vmlinux.gz: vmlinux 56 $(Q)$(MAKE) $(build)=$(boot) $@ 59 $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@ 62 $(Q)$(MAKE) $(clean)=$(boot) 65 echo '* boot - Compressed kernel image (arch/alpha/boot/vmlinux.gz)' 66 echo ' bootimage - SRM bootable image (arch/alpha/boot/bootimage)' 67 echo ' bootpfile - BOOTP bootable image (arch/alpha/boot/bootpfile)' 68 echo ' bootpzfile - compressed kernel BOOTP image (arch/alpha/boot/bootpzfile)'
|
/linux-4.4.14/arch/avr32/ |
H A D | Makefile | 31 head-$(CONFIG_LOADER_U_BOOT) += arch/avr32/boot/u-boot/head.o 40 core-$(CONFIG_LOADER_U_BOOT) += arch/avr32/boot/u-boot/ 50 boot := arch/$(ARCH)/boot/images macro 52 KBUILD_IMAGE := $(boot)/uImage 53 vmlinux.elf: KBUILD_IMAGE := $(boot)/vmlinux.elf 54 vmlinux.cso: KBUILD_IMAGE := $(boot)/vmlinux.cso 55 uImage.srec: KBUILD_IMAGE := $(boot)/uImage.srec 56 uImage: KBUILD_IMAGE := $(boot)/uImage 64 $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@ 67 $(Q)$(MAKE) $(build)=$(boot) BOOTIMAGE=$(KBUILD_IMAGE) $@ 78 $(Q)$(MAKE) $(clean)=$(boot)
|
/linux-4.4.14/arch/m32r/ |
H A D | Makefile | 41 arch/m32r/boot/ \ 46 boot := arch/m32r/boot macro 53 $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@ 58 $(Q)$(MAKE) $(clean)=$(boot) 61 echo '* zImage - Compressed kernel image (arch/$(ARCH)/boot/zImage)'
|
/linux-4.4.14/arch/c6x/ |
H A D | Makefile | 37 boot := arch/$(ARCH)/boot macro 44 core-y += $(boot)/dts/ 50 $(Q)$(MAKE) $(build)=$(boot) $(patsubst %,$(boot)/%,$@) 53 $(Q)$(MAKE) $(build)=$(boot) $(patsubst %,$(boot)/%,$@) 56 $(Q)$(MAKE) $(clean)=$(boot) 59 @echo ' vmlinux.bin - Binary kernel image (arch/$(ARCH)/boot/vmlinux.bin)' 60 @echo ' dtbImage.<dt> - ELF image with $(arch)/boot/dts/<dt>.dts linked in'
|
/linux-4.4.14/arch/cris/ |
H A D | Makefile | 44 core-$(CONFIG_OF) += arch/cris/boot/dts/ 77 boot := arch/cris/boot macro 83 $(Q)$(MAKE) $(build)=$(boot) MACHINE=$(MACHINE) $(boot)/$@ 88 $(Q)if [ -e arch/cris/boot ]; then \ 89 $(MAKE) $(clean)=arch/cris/boot; \ 93 $(boot)/zImage \ 94 $(boot)/compressed/decompress.bin \ 95 $(boot)/compressed/piggy.gz \ 96 $(boot)/rescue/rescue.bin 102 echo '* zImage - Compressed kernel image (arch/cris/boot/zImage)' 103 echo '* Image - Uncompressed kernel image (arch/cris/boot/Image)'
|
/linux-4.4.14/arch/score/ |
H A D | Makefile | 32 boot := arch/score/boot macro 35 $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@ 38 @$(MAKE) $(clean)=$(boot) 41 echo ' vmlinux.bin - Raw binary boot image'
|
/linux-4.4.14/arch/nios2/ |
H A D | Makefile | 42 nios2-boot := arch/$(ARCH)/boot 45 KBUILD_IMAGE := $(nios2-boot)/vmImage 48 core-y += $(nios2-boot)/ 54 $(Q)$(MAKE) $(clean)=$(nios2-boot) 57 $(Q)$(MAKE) $(build)=$(nios2-boot) $(nios2-boot)/$@ 60 $(Q)$(MAKE) $(build)=$(nios2-boot) $(nios2-boot)/$@ 63 $(Q)$(MAKE) $(build)=$(nios2-boot) $(nios2-boot)/$@ 66 $(Q)$(MAKE) $(build)=$(nios2-boot) BOOTIMAGE=$(KBUILD_IMAGE) install
|
/linux-4.4.14/arch/xtensa/boot/boot-elf/ |
H A D | Makefile | 17 boot-y := bootstrap.o 19 OBJS := $(addprefix $(obj)/,$(boot-y)) 27 $(obj)/../Image.elf: $(obj)/Image.o $(obj)/boot.lds 29 -T $(obj)/boot.lds \
|
H A D | boot.lds.S | 2 * linux/arch/xtensa/boot/boot-elf/boot.lds.S
|
H A D | bootstrap.S | 2 * arch/xtensa/boot/boot-elf/bootstrap.S
|
/linux-4.4.14/include/linux/ |
H A D | msdos_fs.h | 6 /* media of boot sector */ fat_valid_media()
|
H A D | adfs_fs.h | 7 * Calculate the boot block checksum on an ADFS drive. Note that this will
|
H A D | edd.h | 12 * In a nutshell, arch/{i386,x86_64}/boot/setup.S populates a scratch 14 * boot devices. 17 * information is used to identify BIOS boot disk. The code in setup.S
|
H A D | efs_vh.h | 15 #define BFNAMESIZE 16 /* max 16 chars in boot file name */ 34 char vh_bootfile[BFNAMESIZE]; /* name of file to boot */
|
H A D | mg_disk.h | 26 /* use mflash as boot device */
|
/linux-4.4.14/arch/m68k/include/uapi/asm/ |
H A D | bootinfo-q40.h | 2 ** asm/bootinfo-q40.h -- Q40-specific boot information definitions
|
H A D | bootinfo-apollo.h | 2 ** asm/bootinfo-apollo.h -- Apollo-specific boot information definitions
|
H A D | bootinfo-atari.h | 2 ** asm/bootinfo-atari.h -- Atari-specific boot information definitions
|
H A D | bootinfo-amiga.h | 2 ** asm/bootinfo-amiga.h -- Amiga-specific boot information definitions
|
H A D | bootinfo-hp300.h | 2 ** asm/bootinfo-hp300.h -- HP9000/300-specific boot information definitions
|
/linux-4.4.14/arch/h8300/ |
H A D | Makefile | 31 core-y += arch/h8300/boot/dts/ 36 boot := arch/h8300/boot macro 39 $(Q)$(MAKE) $(build)=arch/h8300/boot/dts arch/h8300/boot/dts/$@ 43 $(Q)$(MAKE) $(build)=arch/h8300/boot/dts 48 $(Q)$(MAKE) $(clean)=$(boot) 51 $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@
|
/linux-4.4.14/arch/arm64/ |
H A D | Makefile | 82 boot := arch/arm64/boot macro 85 $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@ 88 $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@ 91 $(Q)$(MAKE) $(build)=$(boot) $@ 94 $(Q)$(MAKE) $(build)=$(boot)/dts $(boot)/dts/$@ 99 $(Q)$(MAKE) $(build)=$(boot)/dts 102 $(Q)$(MAKE) $(dtbinst)=$(boot)/dts 110 $(Q)$(MAKE) $(clean)=$(boot) 111 $(Q)$(MAKE) $(clean)=$(boot)/dts 114 echo '* Image.gz - Compressed kernel image (arch/$(ARCH)/boot/Image.gz)' 115 echo ' Image - Uncompressed kernel image (arch/$(ARCH)/boot/Image)'
|
/linux-4.4.14/arch/sparc/ |
H A D | Makefile | 63 boot := arch/sparc/boot macro 69 $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@ 72 $(Q)$(MAKE) $(build)=$(boot) $@ 75 $(Q)$(MAKE) $(clean)=$(boot) 78 KBUILD_IMAGE := $(boot)/zImage 83 echo '* image - kernel image ($(boot)/image)' 84 echo '* zImage - stripped kernel image ($(boot)/zImage)' 91 echo '* zImage - stripped and compressed sparc64 kernel ($(boot)/zImage)'
|
/linux-4.4.14/arch/metag/ |
H A D | Makefile | 45 core-y += arch/metag/boot/dts/ 54 boot := arch/metag/boot macro 69 $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@ 72 $(Q)$(MAKE) $(build)=$(boot)/dts $(boot)/dts/$@ 75 $(Q)$(MAKE) $(build)=$(boot)/dts 78 $(Q)$(MAKE) $(clean)=$(boot) 81 echo '* vmlinux.bin - Binary kernel image (arch/$(ARCH)/boot/vmlinux.bin)'
|
/linux-4.4.14/arch/mn10300/ |
H A D | Makefile | 68 boot := arch/mn10300/boot macro 72 KBUILD_IMAGE := $(boot)/zImage 73 CLEAN_FILES += $(boot)/zImage 74 CLEAN_FILES += $(boot)/compressed/vmlinux 75 CLEAN_FILES += $(boot)/compressed/vmlinux.bin 76 CLEAN_FILES += $(boot)/compressed/vmlinux.bin.gz 79 $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@ 92 echo '* zImage - Compressed kernel image (arch/$(ARCH)/boot/zImage)'
|
/linux-4.4.14/arch/unicore32/ |
H A D | Makefile | 42 boot := arch/unicore32/boot macro 51 $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@ 54 $(Q)$(MAKE) $(clean)=$(boot) 57 echo '* zImage - Compressed kernel image (arch/$(ARCH)/boot/zImage)' 58 echo ' Image - Uncompressed kernel image (arch/$(ARCH)/boot/Image)'
|
/linux-4.4.14/drivers/net/wireless/ti/wl1251/ |
H A D | Makefile | 2 acx.o boot.o init.o debugfs.o io.o
|
/linux-4.4.14/drivers/net/wireless/ti/wlcore/ |
H A D | Makefile | 2 boot.o init.o debugfs.o scan.o sysfs.o vendor_cmd.o
|
/linux-4.4.14/arch/xtensa/boot/boot-redboot/ |
H A D | Makefile | 13 LD_ARGS = -T $(srctree)/$(obj)/boot.ld 15 boot-y := bootstrap.o 17 OBJS := $(addprefix $(obj)/,$(boot-y)) 18 LIBS := arch/xtensa/boot/lib/lib.a arch/xtensa/lib/lib.a
|
/linux-4.4.14/include/linux/soc/brcmstb/ |
H A D | brcmstb.h | 5 * Bus Interface Unit control register setup, must happen early during boot,
|
/linux-4.4.14/arch/m68k/include/asm/ |
H A D | sun3-head.h | 5 #define LOAD_ADDR 0x4000 /* prom jumps to us here unless this is elf /boot */
|
H A D | bootinfo.h | 2 ** asm/bootinfo.h -- Definition of the Linux/m68k boot information structure
|
/linux-4.4.14/arch/s390/ |
H A D | Makefile | 50 KBUILD_IMAGE :=arch/s390/boot/image 108 boot := arch/s390/boot macro 113 $(Q)$(MAKE) $(build)=$(boot) $@ 116 $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@ 119 $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@ 126 $(Q)$(MAKE) $(clean)=$(boot) 130 echo '* image - Kernel image for IPL ($(boot)/image)' 131 echo '* bzImage - Compressed kernel image for IPL ($(boot)/bzImage)'
|
/linux-4.4.14/arch/microblaze/ |
H A D | Makefile | 55 boot := arch/microblaze/boot macro 61 core-y += $(boot)/dts/ 74 $(Q)$(MAKE) $(clean)=$(boot) 77 $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@ 80 $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@ 86 echo ' simpleImage.<dt> - ELF image with $(arch)/boot/dts/<dt>.dts linked in' 94 echo ' name of a dts file from the arch/microblaze/boot/dts/ directory' 98 MRPROPER_FILES += $(boot)/simpleImage.*
|
/linux-4.4.14/arch/xtensa/ |
H A D | Makefile | 89 core-$(CONFIG_OF) += arch/xtensa/boot/dts/ 92 boot := arch/xtensa/boot macro 99 $(Q)$(MAKE) $(build)=$(boot) $@ 102 $(Q)$(MAKE) $(build)=$(boot)/dts $(boot)/dts/$@ 105 $(Q)$(MAKE) $(build)=$(boot)/dts 108 @echo '* zImage - Compressed kernel image (arch/xtensa/boot/images/zImage.*)'
|
/linux-4.4.14/arch/m32r/boot/compressed/ |
H A D | boot.h | 26 * | boot(copy&jump) | 38 * | boot(copy&jump) |
|
/linux-4.4.14/arch/blackfin/ |
H A D | Makefile | 140 $(Q)$(MAKE) $(clean)=$(boot) 143 boot := arch/$(ARCH)/boot macro 146 KBUILD_IMAGE := $(boot)/uImage 151 $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@ 154 $(Q)$(MAKE) $(build)=$(boot) BOOTIMAGE=$(KBUILD_IMAGE) install 158 echo ' vmImage.bin - Uncompressed Kernel-only image for U-Boot (arch/$(ARCH)/boot/vmImage.bin)' 159 echo ' vmImage.bz2 - Kernel-only image for U-Boot (arch/$(ARCH)/boot/vmImage.bz2)' 160 echo '* vmImage.gz - Kernel-only image for U-Boot (arch/$(ARCH)/boot/vmImage.gz)' 161 echo ' vmImage.lzma - Kernel-only image for U-Boot (arch/$(ARCH)/boot/vmImage.lzma)' 162 echo ' vmImage.lzo - Kernel-only image for U-Boot (arch/$(ARCH)/boot/vmImage.lzo)' 163 echo ' vmImage.xip - XIP Kernel-only image for U-Boot (arch/$(ARCH)/boot/vmImage.xip)'
|
/linux-4.4.14/include/uapi/linux/ |
H A D | hysdn_if.h | 22 #define EPOF_BAD_IMG_SIZE 1004 /* POF boot image size invalid */ 23 #define ERR_BOOTIMG_FAIL 1005 /* 1. stage boot image did not start */ 24 #define ERR_BOOTSEQ_FAIL 1006 /* 2. stage boot seq handshake timeout */
|
H A D | cycx_cfm.h | 35 #define GEN_SET_SEG 0x1401 /* boot segment setting. */ 36 #define GEN_BOOT_DAT 0x1402 /* boot data. */ 38 #define GEN_DEFPAR 0x1404 /* buffer length for boot. */
|
H A D | sysinfo.h | 8 __kernel_long_t uptime; /* Seconds since boot */
|
H A D | edd.h | 12 * In a nutshell, arch/{i386,x86_64}/boot/setup.S populates a scratch 14 * boot devices. 17 * information is used to identify BIOS boot disk. The code in setup.S 50 #define EDD_MBR_SIG_BUF 0x290 /* addr in boot params */
|
/linux-4.4.14/arch/m32r/kernel/ |
H A D | vmlinux.lds.S | 16 kernel_entry = boot - 0x80000000; 29 .boot : { *(.boot) } = 0
|
/linux-4.4.14/arch/arm/mach-tegra/ |
H A D | platsmp.c | 54 * effect on first boot of the CPU since it should already be tegra20_boot_secondary() 83 * The power up sequence of cold boot CPU and warm boot CPU tegra30_boot_secondary() 86 * For warm boot CPU that was resumed from CPU hotplug, the tegra30_boot_secondary() 88 * flow controller of the warm boot CPU. We need to wait for tegra30_boot_secondary() 91 * For cold boot CPU, do not wait. After the cold boot CPU be tegra30_boot_secondary() 106 * The power status of the cold boot CPU is power gated as tegra30_boot_secondary() 107 * default. To power up the cold boot CPU, the power should tegra30_boot_secondary() 150 * Warm boot flow tegra114_boot_secondary() 160 * Cold boot flow tegra114_boot_secondary() 188 /* Always mark the boot CPU (CPU0) as initialized. */ tegra_smp_prepare_cpus()
|
/linux-4.4.14/arch/sh/boot/romimage/ |
H A D | Makefile | 2 # linux/arch/sh/boot/romimage/Makefile 29 $(obj)/piggy.o: $(obj)/vmlinux.scr $(obj)/zeropage.bin arch/sh/boot/zImage FORCE
|
H A D | mmcif-sh7724.c | 12 #include <linux/mmc/boot.h> 29 * # dd if=arch/sh/boot/romImage of=/dev/sdx bs=512 seek=512
|
/linux-4.4.14/arch/ia64/ |
H A D | Makefile | 64 boot := arch/ia64/hp/sim/boot macro 66 PHONY += boot compressed check 75 $(Q)$(MAKE) $(build)=$(boot) $@ 81 $(Q)$(MAKE) $(clean)=$(boot) 85 boot: lib/lib.a vmlinux 86 $(Q)$(MAKE) $(build)=$(boot) $@ 94 echo ' boot - Build vmlinux and bootloader for Ski simulator'
|
/linux-4.4.14/sound/drivers/vx/ |
H A D | vx_hwdep.c | 38 MODULE_FIRMWARE("vx/bd56002.boot"); 39 MODULE_FIRMWARE("vx/bd563v2.boot"); 40 MODULE_FIRMWARE("vx/bd563s3.boot"); 50 NULL, "x1_1_vx2.xlx", "bd56002.boot", "l_1_vx2.d56", snd_vx_setup_firmware() 53 NULL, "x1_2_v22.xlx", "bd563v2.boot", "l_1_v22.d56", snd_vx_setup_firmware() 56 NULL, "x1_2_v22.xlx", "bd563v2.boot", "l_1_v22.d56", snd_vx_setup_firmware() 59 "bx_1_vxp.b56", "x1_1_vxp.xlx", "bd563s3.boot", "l_1_vxp.d56" snd_vx_setup_firmware() 62 "bx_1_vp4.b56", "x1_1_vp4.xlx", "bd563s3.boot", "l_1_vp4.d56" snd_vx_setup_firmware()
|
H A D | vx_core.c | 418 * snd_vx_boot_xilinx - boot up the xilinx interface 420 * @boot: the boot record to load 422 int snd_vx_load_boot_image(struct vx_core *chip, const struct firmware *boot) snd_vx_load_boot_image() argument 427 /* check the length of boot image */ snd_vx_load_boot_image() 428 if (boot->size <= 0) snd_vx_load_boot_image() 430 if (boot->size % 3) snd_vx_load_boot_image() 435 unsigned int c = ((u32)boot->data[0] << 16) | ((u32)boot->data[1] << 8) | boot->data[2]; snd_vx_load_boot_image() 436 if (boot->size != (c + 2) * 3) snd_vx_load_boot_image() 446 /* download boot strap */ snd_vx_load_boot_image() 448 if (i >= boot->size) { snd_vx_load_boot_image() 452 snd_printk(KERN_ERR "dsp boot failed at %d\n", i); snd_vx_load_boot_image() 459 const unsigned char *image = boot->data + i; snd_vx_load_boot_image() 461 snd_printk(KERN_ERR "dsp boot failed at %d\n", i); snd_vx_load_boot_image() 654 * snd_vx_dsp_boot - load the DSP boot 656 * @boot: firmware data 658 int snd_vx_dsp_boot(struct vx_core *chip, const struct firmware *boot) snd_vx_dsp_boot() argument 666 if ((err = snd_vx_load_boot_image(chip, boot)) < 0) snd_vx_dsp_boot()
|
/linux-4.4.14/arch/mips/ |
H A D | Makefile | 298 # boot image targets (arch/mips/boot/) 299 boot-y := vmlinux.bin 300 boot-y += vmlinux.ecoff 301 boot-y += vmlinux.srec 303 boot-y += uImage 304 boot-y += uImage.bin 305 boot-y += uImage.bz2 306 boot-y += uImage.gz 307 boot-y += uImage.lzma 308 boot-y += uImage.lzo 311 # compressed boot image targets (arch/mips/boot/compressed/) 344 # boot 345 $(boot-y): $(vmlinux-32) FORCE 346 $(Q)$(MAKE) $(build)=arch/mips/boot VMLINUX=$(vmlinux-32) \ 347 $(bootvars-y) arch/mips/boot/$@ 350 # boot/compressed 352 $(Q)$(MAKE) $(build)=arch/mips/boot/compressed \ 364 core-$(CONFIG_BUILTIN_DTB) += arch/mips/boot/dts/ 367 $(Q)$(MAKE) $(build)=arch/mips/boot/dts arch/mips/boot/dts/$@ 371 $(Q)$(MAKE) $(build)=arch/mips/boot/dts 375 $(Q)$(MAKE) $(dtbinst)=arch/mips/boot/dts 396 $(Q)$(MAKE) $(clean)=arch/mips/boot 397 $(Q)$(MAKE) $(clean)=arch/mips/boot/compressed 402 echo ' vmlinux.ecoff - ECOFF boot image' 403 echo ' vmlinux.bin - Raw binary boot image' 404 echo ' vmlinux.srec - SREC boot image' 405 echo ' vmlinux.32 - 64-bit boot image wrapped in 32bits (IP22/IP32)' 406 echo ' vmlinuz - Compressed boot(zboot) image'
|
/linux-4.4.14/arch/x86/ |
H A D | Makefile | 20 CODE16GCC_CFLAGS := -m32 -Wa,$(srctree)/arch/x86/boot/code16gcc.h 233 # boot loader support. Several targets are kept for legacy purposes 235 boot := arch/x86/boot macro 245 KBUILD_IMAGE := $(boot)/bzImage 251 $(Q)$(MAKE) $(build)=$(boot) $(KBUILD_IMAGE) 252 $(Q)mkdir -p $(objtree)/arch/$(UTS_MACHINE)/boot 253 $(Q)ln -fsn ../../x86/boot/bzImage $(objtree)/arch/$(UTS_MACHINE)/boot/$@ 256 $(Q)$(MAKE) $(build)=$(boot) $@ 260 $(Q)$(MAKE) $(build)=$(boot) $@ 269 $(Q)$(MAKE) $(clean)=$(boot) 274 echo '* bzImage - Compressed kernel image (arch/x86/boot/bzImage)' 279 echo ' fdimage - Create 1.4MB boot floppy image (arch/x86/boot/fdimage)' 280 echo ' fdimage144 - Create 1.4MB boot floppy image (arch/x86/boot/fdimage)' 281 echo ' fdimage288 - Create 2.8MB boot floppy image (arch/x86/boot/fdimage)' 282 echo ' isoimage - Create a boot CD-ROM image (arch/x86/boot/image.iso)'
|
/linux-4.4.14/arch/x86/boot/ |
H A D | version.c | 15 #include "boot.h"
|
H A D | regs.c | 19 #include "boot.h"
|
H A D | cpu.c | 12 * arch/x86/boot/cpu.c 18 #include "boot.h"
|
H A D | main.c | 16 #include "boot.h" 25 * Copy the header into the boot parameter block. Since this 137 /* First, copy the boot header into the "zeropage" */ main() 140 /* Initialize the early-boot console */ main() 150 puts("Unable to boot - please use a kernel appropriate " main()
|
H A D | pm.c | 15 #include "boot.h" 68 /* There are machines which are known to not boot with the GDT setup_gdt() 111 puts("A20 gate not responding, unable to boot...\n"); go_to_protected_mode()
|
H A D | video-mode.c | 12 * arch/i386/boot/video-mode.c 18 #include "boot.h" 22 #include <uapi/asm/boot.h>
|
H A D | bitops.h | 12 * Very simple bitops for the boot code.
|
/linux-4.4.14/arch/xtensa/boot/dts/ |
H A D | Makefile | 2 # arch/xtensa/boot/dts/Makefile
|
/linux-4.4.14/arch/cris/boot/rescue/ |
H A D | head_v32.S | 5 * In practice, this only works for NOR flash (or some convoluted RAM boot)
|
H A D | head_v10.S | 10 * corrupt that we can't use it to boot into the ftp flash 70 ;; The partitiontable is looked for at the first sector after the boot 76 ;; The normal Etrax100 on-chip boot ROM does serial boot at 0x380000f0. 77 ;; That is not where we put our downloaded serial boot-code. 82 ;; one booted through the Etrax serial boot code. 218 move.d $r1, $r7 ; remember boot partition offset 309 ;; check r7, which contains either -1 or the partition to boot from 318 jump $r7 ; boot!
|
/linux-4.4.14/include/asm-generic/ |
H A D | resource.h | 8 * boot-time rlimit defaults for the init task:
|
H A D | timex.h | 18 * calibration during boot.
|
/linux-4.4.14/arch/score/boot/ |
H A D | Makefile | 2 # arch/score/boot/Makefile
|
/linux-4.4.14/arch/mips/boot/compressed/ |
H A D | string.c | 2 * arch/mips/boot/compressed/string.c
|
H A D | dbg.c | 2 * MIPS-specific debug support for pre-boot environment
|
/linux-4.4.14/arch/m32r/boot/ |
H A D | Makefile | 2 # arch/m32r/boot/Makefile
|
/linux-4.4.14/arch/arm/mach-orion5x/ |
H A D | board-mss2.c | 66 * - Userland modifies U-boot env to tell U-boot to go idle at next boot 68 * - U-boot starts and go into an idle mode until the user press "power"
|
/linux-4.4.14/arch/ia64/pci/ |
H A D | fixup.c | 14 * Fixup to mark boot BIOS video selected by BIOS before it changes 18 * The standard boot ROM sequence for an x86 machine uses the BIOS 19 * to select an initial video card for boot display. This boot video 21 * IORESOURCE_ROM_SHADOW is used to associate the boot video
|
/linux-4.4.14/Documentation/mic/mpssd/ |
H A D | micctrl | 20 # micctrl - Controls MIC boot/start/stop. 82 echo "boot" > $f/state 85 boot() function 160 boot $2 169 echo $"Usage: $0 {-s (status) |-r (reset) |-b (boot) |-S (shutdown) |-w (wait)}"
|
/linux-4.4.14/arch/arc/ |
H A D | Makefile | 97 core-y += arch/arc/boot/dts/ 107 boot := arch/arc/boot macro 118 $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@ 121 $(Q)$(MAKE) $(build)=$(boot)/dts $(boot)/dts/$@ 124 $(Q)$(MAKE) $(build)=$(boot)/dts 127 $(Q)$(MAKE) $(clean)=$(boot)
|
/linux-4.4.14/drivers/pnp/pnpbios/ |
H A D | bioscalls.c | 279 * get_dev_node() and set_dev_node() with boot=1 rather than with boot=0. 285 * boot = whether to get nonvolatile boot (!=0) 289 static int __pnp_bios_get_dev_node(u8 *nodenum, char boot, __pnp_bios_get_dev_node() argument 297 if (!boot && pnpbios_dont_use_current_config) __pnp_bios_get_dev_node() 301 boot ? 2 : 1, PNP_DS, 0, &tmp_nodenum, __pnp_bios_get_dev_node() 307 int pnp_bios_get_dev_node(u8 *nodenum, char boot, struct pnp_bios_node *data) pnp_bios_get_dev_node() argument 311 status = __pnp_bios_get_dev_node(nodenum, boot, data); pnp_bios_get_dev_node() 320 * boot = whether to set nonvolatile boot (!=0) 323 static int __pnp_bios_set_dev_node(u8 nodenum, char boot, __pnp_bios_set_dev_node() argument 330 if (!boot && pnpbios_dont_use_current_config) __pnp_bios_set_dev_node() 333 boot ? 2 : 1, PNP_DS, 0, 0, data, 65536, NULL, __pnp_bios_set_dev_node() 338 int pnp_bios_set_dev_node(u8 nodenum, char boot, struct pnp_bios_node *data) pnp_bios_set_dev_node() argument 342 status = __pnp_bios_set_dev_node(nodenum, boot, data); pnp_bios_set_dev_node() 347 if (!boot) { /* Update devlist */ pnp_bios_set_dev_node() 348 status = pnp_bios_get_dev_node(&nodenum, boot, data); pnp_bios_set_dev_node()
|
H A D | proc.c | 7 * The .../devices and .../<node> and .../boot/<node> files are 221 int boot = (long)data >> 8; pnpbios_proc_show() local 228 if (pnp_bios_get_dev_node(&nodenum, boot, node)) { pnpbios_proc_show() 248 int boot = (long)data >> 8; pnpbios_proc_write() local 255 if (pnp_bios_get_dev_node(&nodenum, boot, node)) { pnpbios_proc_write() 267 if (pnp_bios_set_dev_node(node->handle, boot, node) != 0) { pnpbios_proc_write() 317 proc_pnp_boot = proc_mkdir("boot", proc_pnp); pnpbios_proc_init() 348 remove_proc_entry("boot", proc_pnp); pnpbios_proc_exit()
|
/linux-4.4.14/arch/arm/mach-bcm/ |
H A D | kona_smp.c | 31 /* Name of device node property defining secondary boot register location */ 32 #define OF_SECONDARY_BOOT "secondary-boot-reg" 96 * Our secondary enable method requires a "secondary-boot-reg" bcm_smp_prepare_cpus() 98 * ROM code boot a secondary code. If we have any trouble bcm_smp_prepare_cpus() 127 * secondary boot register. When a core finds those bits contain its 128 * own core id, it performs initialization, including computing its boot 129 * address by clearing the boot register value's bottom two bits. The 130 * core signals that it is beginning its execution by writing its boot 131 * address back to the secondary boot register, and finally jumps to 137 * - Write that value into the secondary boot register. 139 * - Wait for the secondary boot register to be re-written, which 158 pr_err("required secondary boot register not specified\n"); bcm_boot_secondary() 164 pr_err("unable to map boot register for cpu %u\n", cpu_id); bcm_boot_secondary()
|
/linux-4.4.14/arch/x86/purgatory/ |
H A D | purgatory.c | 14 #include "../boot/string.h" 30 * On x86, second kernel requries first 640K of memory to boot. Copy
|
/linux-4.4.14/arch/sh/include/mach-ecovec24/mach/ |
H A D | romimage.h | 3 /* EcoVec board specific boot code: 28 * Set the following to enable MMCIF boot from the MMC card in CN12:
|
/linux-4.4.14/arch/ia64/hp/sim/boot/ |
H A D | Makefile | 2 # ia64/boot/Makefile 21 boot: bootloader
|
/linux-4.4.14/arch/arm64/boot/ |
H A D | Makefile | 2 # arch/arm64/boot/Makefile 14 # Based on the ia64 boot/Makefile.
|
/linux-4.4.14/drivers/video/fbdev/omap2/dss/ |
H A D | Makefile | 1 obj-$(CONFIG_OMAP2_DSS_INIT) += omapdss-boot-init.o
|
/linux-4.4.14/arch/x86/include/asm/ |
H A D | boot.h | 6 #include <uapi/asm/boot.h>
|
H A D | bootparam_utils.h | 25 * compliance with the x86 boot spec located in sanitize_boot_params() 26 * Documentation/x86/boot.txt . That spec says that the sanitize_boot_params()
|
H A D | hypervisor.h | 41 /* Platform setup (run once per boot) */ 44 /* X2APIC detection (run once per boot) */
|
H A D | olpc_ofw.h | 26 /* check if OFW was detected during boot */
|
H A D | pci-direct.h | 6 /* Direct PCI access. This is used for PCI accesses in early boot before
|
/linux-4.4.14/arch/x86/xen/ |
H A D | Makefile | 8 # Make sure early boot has no stackprotector
|
H A D | xen-head.S | 9 #include <asm/boot.h> 57 * point, false if this is the boot CPU being initialized for 60 * Note: This is called as a function on the boot CPU, and is the entry point
|
/linux-4.4.14/arch/arc/kernel/ |
H A D | clk.c | 15 * In future we can determine this in early boot
|
H A D | irq.c | 56 * - For boot CPU, actually request the IRQ with genirq core + enables 59 * Relies on being called by boot cpu first (i.e. request called ahead) of 61 * which are guaranteed to be setup on boot core first. 63 * of being called on boot CPU first.
|
/linux-4.4.14/arch/cris/boot/ |
H A D | Makefile | 2 # arch/cris/boot/Makefile
|
/linux-4.4.14/arch/powerpc/platforms/powermac/ |
H A D | Makefile | 4 # Do not trace early boot code
|
/linux-4.4.14/arch/sh/include/asm/ |
H A D | setup.h | 7 * This is set up by the setup-routine at boot-time
|
H A D | sh_bios.h | 9 * usually from within the early stages of kernel boot.
|
/linux-4.4.14/arch/sh/include/mach-kfr2r09/mach/ |
H A D | romimage.h | 3 /* kfr2r09 board specific boot code:
|
/linux-4.4.14/arch/microblaze/kernel/ |
H A D | Makefile | 6 # Do not trace early boot code and low level code
|
/linux-4.4.14/arch/powerpc/boot/ |
H A D | ugecon.h | 2 * arch/powerpc/boot/ugecon.h
|
H A D | mktree.c | 25 * bytes allocated after the _start label used by the boot rom (see 50 fprintf(stderr, "usage: %s <zImage-file> <boot-image> <load address> <entry point>\n",argv[0]); main() 119 perror("boot-image write"); main() 132 perror("boot-image write"); main() 145 perror("boot-image rewrite"); main()
|
H A D | cuboot-amigaone.c | 2 * Old U-boot compatibility for AmigaOne
|
H A D | cuboot-bamboo.c | 2 * Old U-boot compatibility for Bamboo
|
H A D | cuboot-ebony.c | 2 * Old U-boot compatibility for Ebony
|
H A D | gamecube.c | 2 * arch/powerpc/boot/gamecube.c
|
H A D | treeboot-ebony.c | 2 * Old U-boot compatibility for Ebony
|
H A D | cuboot-824x.c | 2 * Old U-boot compatibility for 824x
|
H A D | cuboot-8xx.c | 2 * Old U-boot compatibility for 8xx
|
H A D | cuboot-katmai.c | 2 * Old U-boot compatibility for Katmai
|
H A D | cuboot-kilauea.c | 2 * Old U-boot compatibility for PPC405EX. This image is already included
|
H A D | cuboot-mpc7448hpc2.c | 7 * Old U-boot compatibility for mpc7448hpc2 board
|
/linux-4.4.14/arch/blackfin/include/asm/ |
H A D | bfin_watchdog.h | 12 /* Bit in SWRST that indicates boot caused by watchdog */
|
/linux-4.4.14/drivers/firmware/ |
H A D | qcom_scm-64.c | 18 * qcom_scm_set_cold_boot_addr() - Set the cold boot address for cpus 22 * Set the cold boot address of the cpus. Any cpu outside the supported 31 * qcom_scm_set_warm_boot_addr() - Set the warm boot address for cpus 49 * warm boot entry point set for this cpu upon reset.
|
H A D | qcom_scm.c | 27 * qcom_scm_set_cold_boot_addr() - Set the cold boot address for cpus 31 * Set the cold boot address of the cpus. Any cpu outside the supported 41 * qcom_scm_set_warm_boot_addr() - Set the warm boot address for cpus 60 * warm boot entry point set for this cpu upon reset.
|
/linux-4.4.14/include/linux/decompress/ |
H A D | mm.h | 4 * Memory management for pre-boot and ramdisk uncompressors 15 /* Code active when included from pre-boot environment: */ 19 * pre-boot environment, so that data can arbitrarily relocated (via
|
/linux-4.4.14/arch/avr32/boot/u-boot/ |
H A D | head.S | 2 * Startup code for use with the u-boot bootloader. 16 * have just been flushed. We get two parameters from u-boot: 48 /* Check if the boot loader actually provided a tag table */
|
/linux-4.4.14/arch/blackfin/boot/ |
H A D | install.sh | 3 # arch/blackfin/boot/install.sh 11 # Adapted from code in arch/i386/boot/Makefile by H. Peter Anvin 12 # Adapted from code in arch/i386/boot/install.sh by Mike Frysinger
|
/linux-4.4.14/arch/arm/mach-shmobile/ |
H A D | platsmp-scu.c | 27 /* For this particular CPU register SCU SMP boot vector */ shmobile_smp_scu_notifier_call() 42 /* install boot code shared by all CPUs */ shmobile_smp_scu_prepare_cpus() 57 /* For this particular CPU deregister boot vector */ shmobile_smp_scu_cpu_die()
|
/linux-4.4.14/arch/arm/boot/ |
H A D | install.sh | 3 # arch/arm/boot/install.sh 11 # Adapted from code in arch/i386/boot/Makefile by H. Peter Anvin 12 # Adapted from code in arch/i386/boot/install.sh by Russell King
|
/linux-4.4.14/security/integrity/ima/ |
H A D | ima_init.c | 27 /* name for boot aggregate entry */ 31 /* Add the boot aggregate to the IMA measurement list and extend 34 * Calculate the boot aggregate, a SHA1 over tpm registers 0-7, 36 * exist. Add the boot aggregate measurement to the measurement 130 rc = ima_add_boot_aggregate(); /* boot aggregate must be first entry */ ima_init()
|
/linux-4.4.14/arch/arm/ |
H A D | Makefile | 248 # The first directory contains additional information for the boot setup code 310 boot := arch/arm/boot macro 327 $(Q)$(MAKE) $(build)=$(boot) MACHINE=$(MACHINE) $(boot)/$@ 330 $(Q)$(MAKE) $(build)=$(boot) MACHINE=$(MACHINE) $@ 333 $(Q)$(MAKE) $(build)=$(boot)/dts MACHINE=$(MACHINE) $(boot)/dts/$@ 338 $(Q)$(MAKE) $(build)=$(boot)/dts 341 $(Q)$(MAKE) $(dtbinst)=$(boot)/dts 351 $(Q)$(MAKE) $(clean)=$(boot) 354 bp:; $(Q)$(MAKE) $(build)=$(boot) MACHINE=$(MACHINE) $(boot)/bootpImage 355 i zi:; $(Q)$(MAKE) $(build)=$(boot) MACHINE=$(MACHINE) $@ 359 echo '* zImage - Compressed kernel image (arch/$(ARCH)/boot/zImage)' 360 echo ' Image - Uncompressed kernel image (arch/$(ARCH)/boot/Image)' 361 echo '* xipImage - XIP kernel image, if configured (arch/$(ARCH)/boot/xipImage)'
|
/linux-4.4.14/drivers/ide/ |
H A D | ide-scan-pci.c | 28 * boot time setup is done in the expected device order and then 51 * This is only used during boot up to get the ordering correct. After 52 * boot up the pci layer takes over the job.
|
/linux-4.4.14/include/linux/platform_data/ |
H A D | mtd-nand-s3c2410.h | 18 * @flash_bbt: Openmoko u-boot can create a Bad Block Table 20 * look for it at boot time and also skip the NAND 31 * a warning at boot time.
|
H A D | sa11x0-serial.h | 16 * functions; it is intended to be discarded after boot.
|
H A D | g762.h | 27 * overloading those installed during boot (e.g. by u-boot).
|
/linux-4.4.14/arch/cris/kernel/ |
H A D | vmlinux.lds.S | 30 /* The boot section is only necessary until the VCS top */ 32 .boot : { *(.boot) }
|
/linux-4.4.14/arch/arm/plat-versatile/ |
H A D | platsmp.c | 44 * Synchronise with the boot thread. versatile_secondary_init() 55 * Set synchronisation state between this boot processor versatile_boot_secondary() 70 * the boot monitor to read the system wide flags register, versatile_boot_secondary()
|
/linux-4.4.14/arch/arm64/include/asm/ |
H A D | fixmap.h | 21 #include <asm/boot.h> 28 * in the boot process. 56 * Temporary boot-time mappings, used by early_ioremap(),
|
H A D | cpu_ops.h | 28 * the boot protocol specified in the ACPI MADT table. 32 * mechanism for doing so, tests whether it is possible to boot 35 * @cpu_postboot: Optionally, perform any post-boot cleanup or necesary
|
/linux-4.4.14/arch/arm/mach-prima2/ |
H A D | platsmp.c | 37 * Synchronise with the boot thread. sirfsoc_secondary_init() 64 * clkc register at offset 0x2b8, which is what boot rom code is sirfsoc_boot_secondary() 92 * Send the secondary CPU SEV, thereby causing the boot monitor to read sirfsoc_boot_secondary()
|
/linux-4.4.14/drivers/net/can/softing/ |
H A D | softing_cs.c | 46 .boot = {0x0000, 0x000000, fw_dir "bcard.bin",}, 58 .boot = {0x0000, 0x000000, fw_dir "bcard.bin",}, 70 .boot = {0x0000, 0x000000, fw_dir "bcard.bin",}, 82 .boot = {0x0000, 0x000000, fw_dir "bcard2.bin",}, 94 .boot = {0x0000, 0x000000, fw_dir "bcard.bin",}, 106 .boot = {0x0000, 0x000000, fw_dir "bcard.bin",}, 118 .boot = {0x0000, 0x000000, fw_dir "bcard2.bin",}, 130 .boot = {0x0000, 0x000000, fw_dir "bcard.bin",}, 142 .boot = {0x0000, 0x000000, fw_dir "bcard2.bin",},
|
H A D | softing_platform.h | 31 } boot, load, app; member in struct:softing_platform_data
|
/linux-4.4.14/arch/blackfin/mach-bf561/ |
H A D | hotplug.c | 23 * turn off the data cache. This causes the CoreB failed to boot. platform_cpu_die()
|
/linux-4.4.14/arch/cris/boot/tools/ |
H A D | build.c | 146 die("Unable to open 'boot'"); main() 148 die("Unable to read header of 'boot'"); main() 150 die("Non-Minix header of 'boot'"); main() 152 die("Non-Minix header of 'boot'"); main() 154 die("Illegal data segment in 'boot'"); main() 156 die("Illegal bss in 'boot'"); main() 158 die("Non-Minix header of 'boot'"); main() 160 die("Illegal symbol table in 'boot'"); main() 166 die("Boot block hasn't got boot flag (0xAA55)"); main()
|
/linux-4.4.14/kernel/power/ |
H A D | poweroff.c | 29 /* run sysrq poweroff on boot cpu */ handle_poweroff()
|
/linux-4.4.14/include/soc/imx/ |
H A D | timer.h | 21 * mxc_timer_init() to initialize timer for non-DT boot. It can be removed
|
/linux-4.4.14/arch/mips/paravirt/ |
H A D | serial.c | 14 * Emit one character to the boot console.
|
/linux-4.4.14/arch/h8300/boot/ |
H A D | Makefile | 1 # arch/h8300/boot/Makefile
|
/linux-4.4.14/arch/arm/kernel/ |
H A D | hyp-stub.S | 26 * For the kernel proper, we need to find out the CPU boot mode long after 27 * boot, so we need to store it in a writable variable. 29 * This is not in .bss, because we set it sufficiently early that the boot-time 38 * Save the primary CPU boot mode. Requires 3 scratch registers. 58 cmp \mode, \reg1 @ matches primary CPU boot mode? 106 * stub hypervisor on the remaining ones: because the saved boot mode 164 bx lr @ The boot CPU mode is left in r4. 175 * __hyp_set_vectors: Call this after boot to set the initial hypervisor 188 * If not, there is a pre-existing hypervisor, some CPUs failed to boot, or
|
/linux-4.4.14/tools/testing/selftests/rcutorture/bin/ |
H A D | functions.sh | 25 # Returns 1 if the specified boot-parameter string tells rcutorture to 57 # Adds boot parameters from the .boot file, if any. 59 if test -r "$2.boot" 61 echo $1 `grep -v '^#' "$2.boot" | tr '\012' ' '` 69 # Decreases number of CPUs based on any maxcpus= boot parameters specified. 102 # arch/<arch>/boot/bzImage unless overridden with the TORTURE_BOOT_IMAGE 111 echo arch/x86/boot/bzImage 114 echo arch/powerpc/boot/bzImage
|
/linux-4.4.14/drivers/isdn/hardware/eicon/ |
H A D | os_pri.c | 336 struct mp_load __iomem *boot; diva_pri_reset_adapter() local 347 boot = (struct mp_load __iomem *) DIVA_OS_MEM_ATTACH_ADDRESS(IoAdapter); diva_pri_reset_adapter() 348 WRITE_DWORD(&boot->err, 0); diva_pri_reset_adapter() 349 DIVA_OS_MEM_DETACH_ADDRESS(IoAdapter, boot); diva_pri_reset_adapter() 355 boot = (struct mp_load __iomem *) DIVA_OS_MEM_ATTACH_ADDRESS(IoAdapter); diva_pri_reset_adapter() 356 i = READ_DWORD(&boot->live); diva_pri_reset_adapter() 359 if (i == READ_DWORD(&boot->live)) { diva_pri_reset_adapter() 360 DIVA_OS_MEM_DETACH_ADDRESS(IoAdapter, boot); diva_pri_reset_adapter() 365 if (READ_DWORD(&boot->err)) { diva_pri_reset_adapter() 368 READ_DWORD(&boot->err))) diva_pri_reset_adapter() 369 DIVA_OS_MEM_DETACH_ADDRESS(IoAdapter, boot); diva_pri_reset_adapter() 372 DIVA_OS_MEM_DETACH_ADDRESS(IoAdapter, boot); diva_pri_reset_adapter() 439 struct mp_load __iomem *boot = (struct mp_load __iomem *) DIVA_OS_MEM_ATTACH_ADDRESS(IoAdapter); diva_pri_start_adapter() local 443 DIVA_OS_MEM_DETACH_ADDRESS(IoAdapter, boot); diva_pri_start_adapter() 448 if (!boot) { diva_pri_start_adapter() 449 DIVA_OS_MEM_DETACH_ADDRESS(IoAdapter, boot); diva_pri_start_adapter() 459 WRITE_DWORD(&boot->addr, start_address); diva_pri_start_adapter() 460 WRITE_DWORD(&boot->cmd, 3); diva_pri_start_adapter() 464 if ((READ_DWORD(&boot->signature) >> 16) == 0x4447) { diva_pri_start_adapter() 473 byte __iomem *p = (byte __iomem *)boot; diva_pri_start_adapter() 479 IoAdapter->ANum, READ_DWORD(&boot->signature), diva_pri_start_adapter() 481 DIVA_OS_MEM_DETACH_ADDRESS(IoAdapter, boot); diva_pri_start_adapter() 488 DIVA_OS_MEM_DETACH_ADDRESS(IoAdapter, boot); diva_pri_start_adapter()
|
/linux-4.4.14/arch/arm64/kernel/ |
H A D | cpufeature.c | 448 static int check_update_ftr_reg(u32 sys_id, int cpu, u64 val, u64 boot) check_update_ftr_reg() argument 454 if ((boot & regp->strict_mask) == (val & regp->strict_mask)) check_update_ftr_reg() 457 regp->name, boot, cpu, val); check_update_ftr_reg() 463 * non-boot CPU. Also performs SANITY checks to make sure that there 464 * aren't any insane variations from that of the boot CPU. 468 struct cpuinfo_arm64 *boot) update_cpu_features() 478 info->reg_ctr, boot->reg_ctr); update_cpu_features() 486 info->reg_dczid, boot->reg_dczid); update_cpu_features() 490 info->reg_cntfrq, boot->reg_cntfrq); update_cpu_features() 499 info->reg_id_aa64dfr0, boot->reg_id_aa64dfr0); update_cpu_features() 501 info->reg_id_aa64dfr1, boot->reg_id_aa64dfr1); update_cpu_features() 507 info->reg_id_aa64isar0, boot->reg_id_aa64isar0); update_cpu_features() 509 info->reg_id_aa64isar1, boot->reg_id_aa64isar1); update_cpu_features() 517 info->reg_id_aa64mmfr0, boot->reg_id_aa64mmfr0); update_cpu_features() 519 info->reg_id_aa64mmfr1, boot->reg_id_aa64mmfr1); update_cpu_features() 526 info->reg_id_aa64pfr0, boot->reg_id_aa64pfr0); update_cpu_features() 528 info->reg_id_aa64pfr1, boot->reg_id_aa64pfr1); update_cpu_features() 535 info->reg_id_dfr0, boot->reg_id_dfr0); update_cpu_features() 537 info->reg_id_isar0, boot->reg_id_isar0); update_cpu_features() 539 info->reg_id_isar1, boot->reg_id_isar1); update_cpu_features() 541 info->reg_id_isar2, boot->reg_id_isar2); update_cpu_features() 543 info->reg_id_isar3, boot->reg_id_isar3); update_cpu_features() 545 info->reg_id_isar4, boot->reg_id_isar4); update_cpu_features() 547 info->reg_id_isar5, boot->reg_id_isar5); update_cpu_features() 555 info->reg_id_mmfr0, boot->reg_id_mmfr0); update_cpu_features() 557 info->reg_id_mmfr1, boot->reg_id_mmfr1); update_cpu_features() 559 info->reg_id_mmfr2, boot->reg_id_mmfr2); update_cpu_features() 561 info->reg_id_mmfr3, boot->reg_id_mmfr3); update_cpu_features() 563 info->reg_id_pfr0, boot->reg_id_pfr0); update_cpu_features() 565 info->reg_id_pfr1, boot->reg_id_pfr1); update_cpu_features() 567 info->reg_mvfr0, boot->reg_mvfr0); update_cpu_features() 569 info->reg_mvfr1, boot->reg_mvfr1); update_cpu_features() 571 info->reg_mvfr2, boot->reg_mvfr2); update_cpu_features() 774 * capabilities based on the boot time active CPUs. This 852 * The capabilities were decided based on the available CPUs at the boot time. 466 update_cpu_features(int cpu, struct cpuinfo_arm64 *info, struct cpuinfo_arm64 *boot) update_cpu_features() argument
|
H A D | smp_spin_table.c | 94 * endianess of the kernel. Therefore, any boot-loaders that smp_spin_table_cpu_prepare() 96 * boot-loader's endianess before jumping. This is mandated by smp_spin_table_cpu_prepare() 97 * the boot protocol. smp_spin_table_cpu_prepare()
|
/linux-4.4.14/arch/powerpc/ |
H A D | Makefile | 17 # Set default 32 bits cross compilers for vdso and boot wrapper 249 boot := arch/$(ARCH)/boot macro 263 $(Q)$(MAKE) ARCH=ppc64 $(build)=$(boot) $(patsubst %,$(boot)/%,$@) 265 $(Q)$(MAKE) ARCH=ppc64 $(build)=$(boot) $(patsubst %,$(boot)/%,$@) 269 $(Q)$(MAKE) ARCH=ppc64 $(build)=$(boot) $(patsubst %,$(boot)/%,$@) 272 $(Q)$(MAKE) ARCH=ppc64 $(build)=$(boot) $(patsubst %,$(boot)/%,$@) 315 @echo ' zImage.* - Compressed kernel image (arch/$(ARCH)/boot/zImage.*)' 331 @echo ' name of a dts file from the arch/$(ARCH)/boot/dts/ directory' 336 $(Q)$(MAKE) $(build)=$(boot) install 345 $(Q)$(MAKE) $(clean)=$(boot)
|
/linux-4.4.14/drivers/net/wimax/i2400m/ |
H A D | fw.c | 43 * The 2400m and derived devices work in two modes: boot-mode or 44 * normal mode. In boot mode we can execute only a handful of commands 47 * The 2400m enters boot mode when it is first connected to the 49 * two submodes of the boot mode: signed and non-signed. Signed takes 53 * On boot mode, in USB, we write to the device using the bulk out 56 * Upon entrance to boot mode, the device sends (preceded with a few 64 * configurations will send different [re]boot barkers; these are 70 * i2400m_bm_cmd() [boot mode command]. Special return values will 89 * warm reset request that will take us to boot-mode. If we time out 91 * boot mode, so we send a reboot barker. 103 * implementations to send a boot mode command to the device and to 177 * Prepare a boot-mode command for delivery 368 * Recognize a boot barker 370 * @buf: buffer where the boot barker. 374 * Note that as a side effect, upon identifying the obtained boot 377 * in verifying that the same type of boot barker is returned when the 380 * Return: 0 if @buf matches a known boot barker. -ENOENT if the 381 * buffer in @buf doesn't match any boot barker in the database or 402 d_printf(2, dev, "boot barker cache-confirmed #%u/%08x\n", i2400m_is_boot_barker() 415 d_printf(1, dev, "boot barker set to #%u/%08x\n", i2400m_is_boot_barker() 423 "reports a different boot barker " i2400m_is_boot_barker() 429 d_printf(2, dev, "boot barker confirmed #%u/%08x\n", i2400m_is_boot_barker() 442 * Given a reply to a boot mode command, chew it and verify everything 464 dev_err(dev, "boot-mode cmd %d: HW BUG? notification didn't " __i2400m_bm_ack_verify() 472 d_printf(6, dev, "boot-mode cmd %d: HW boot barker\n", opcode); __i2400m_bm_ack_verify() 478 d_printf(3, dev, "boot-mode cmd %d: HW reboot ack barker\n", __i2400m_bm_ack_verify() 488 d_printf(5, dev, "boot-mode cmd %d: notification for opcode %u " __i2400m_bm_ack_verify() 497 dev_err(dev, "boot-mode cmd %d: HW BUG? wrong signature " __i2400m_bm_ack_verify() 502 dev_err(dev, "boot-mode cmd %d: HW BUG? " __i2400m_bm_ack_verify() 508 dev_err(dev, "boot-mode cmd %d: error; hw response %u\n", __i2400m_bm_ack_verify() 513 dev_err(dev, "boot-mode cmd %d: SW BUG " __i2400m_bm_ack_verify() 538 * i2400m_bm_cmd - Execute a boot mode command 577 * Executes a boot-mode command and waits for a response, doing basic 603 "boot-mode cmd %d csum %u rr %u da %u: " i2400m_bm_cmd() 613 dev_err(dev, "boot-mode cmd %d: error waiting for an ack: %d\n", i2400m_bm_cmd() 728 * either I2400M_BRH_SIGNED_JUMP for secure boot i2400m_dnload_bcf() 729 * or I2400M_BRH_JUMP for unsecure boot, the last chunk i2400m_dnload_bcf() 768 * "signed boot" 785 * Depending on the boot mode (signed vs non-signed), different 806 d_printf(1, dev, "unsecure boot, jumping to 0x%08x\n", i2400m_dnload_finalize() 817 d_printf(1, dev, "secure boot, jumping to 0x%08x\n", i2400m_dnload_finalize() 840 * i2400m_bootrom_init - Reboots a powered device into boot mode 857 * Tries hard enough to put the device in boot-mode. There are two 926 * Device has timed out, we might be in boot mode i2400m_bootrom_init() 932 dev_err(dev, "device boot: reboot barker timed out, " i2400m_bootrom_init() 944 dev_warn(dev, "device boot: got ack barker " i2400m_bootrom_init() 952 dev_err(dev, "device boot: tried all the echo/acks, could " i2400m_bootrom_init() 1001 d_printf(2, dev, "device reboot ack: got ack barker - boot done\n"); i2400m_bootrom_init() 1066 * Initialize a non signed boot 1097 * Initialize the signed boot process 1152 d_printf(1, dev, "signed boot\n"); i2400m_dnload_init() 1157 dev_err(dev, "firmware %s: signed boot download " i2400m_dnload_init() 1161 /* non-signed boot process without pokes */ i2400m_dnload_init() 1162 d_printf(1, dev, "non-signed boot\n"); i2400m_dnload_init() 1380 * Note we only reinitialize boot-mode if the flags say so. Some hw 1382 * need to reinitialize the boot room, hence the flags modification.
|
/linux-4.4.14/drivers/gpu/drm/nouveau/include/nvkm/core/ |
H A D | memory.h | 23 void (*boot)(struct nvkm_memory *, struct nvkm_vm *); member in struct:nvkm_memory_func 38 #define nvkm_memory_boot(p,v) (p)->func->boot((p),(v))
|
/linux-4.4.14/arch/tile/kernel/ |
H A D | early_printk.c | 29 * Convert NL to NLCR (close enough to CRNL) during early boot. early_hv_write() 31 * to be good enough for early boot console output. early_hv_write()
|
H A D | smpboot.c | 35 /* The messaging code jumps to this pointer during boot-up */ 38 /* Called very early during startup to mark boot cpu as online */ smp_prepare_boot_cpu() 54 * until they get an IPI from the boot cpu to come online. 65 * Pin this task to the boot CPU while we bring up the others, smp_prepare_cpus() 70 pr_err("Couldn't set init affinity to boot cpu (%ld)\n", rc); smp_prepare_cpus() 93 * Make this processor do nothing on boot. smp_prepare_cpus() 108 /* Make this thread the boot thread for this processor */ smp_prepare_cpus() 239 panic("Received a MSG_START_CPU IPI after boot finished."); panic_start_cpu()
|
/linux-4.4.14/arch/unicore32/boot/compressed/ |
H A D | Makefile | 2 # linux/arch/unicore32/boot/compressed/Makefile 66 $(obj)/vmlinux.lds: $(obj)/vmlinux.lds.in arch/unicore32/boot/Makefile $(KCONFIG_CONFIG)
|
/linux-4.4.14/arch/mips/lantiq/falcon/ |
H A D | reset.c | 24 /* boot mode mask */ 33 /* allow the watchdog driver to find out what the boot reason was */ ltq_reset_cause()
|
/linux-4.4.14/arch/sparc/boot/ |
H A D | Makefile | 1 # Makefile for the Sparc boot stuff. 38 # uImage - Binary file read by U-boot
|
H A D | install.sh | 9 # Adapted from code in arch/i386/boot/Makefile by H. Peter Anvin
|
/linux-4.4.14/arch/sparc/include/asm/ |
H A D | kdebug_32.h | 22 /* The debug vector is passed in %o1 at boot time. It is a pointer to 39 * from what you were left with at boot time you have to call
|
H A D | turbosparc.h | 20 * BM: Boot Mode -- 0 = not in boot mode, 1 = in boot mode 22 * This indicates whether the TurboSparc is in boot-mode or not.
|
/linux-4.4.14/arch/metag/include/asm/ |
H A D | clock.h | 33 * Only accessible during boot. 39 * during boot.
|
/linux-4.4.14/arch/metag/kernel/ |
H A D | head.S | 28 MOV D1Ar1,D0Ar4 !Store kernel boot params 54 ! the boot thread might have performed prior to coherency taking effect.
|
/linux-4.4.14/arch/parisc/ |
H A D | install.sh | 3 # arch/parisc/install.sh, derived from arch/i386/boot/install.sh 11 # Adapted from code in arch/i386/boot/Makefile by H. Peter Anvin
|
/linux-4.4.14/arch/arm/include/asm/ |
H A D | firmware.h | 33 * Sets boot address of specified physical CPU 37 * Gets boot address of specified physical CPU
|
/linux-4.4.14/arch/mips/include/asm/octeon/ |
H A D | cvmx-sysinfo.h | 38 * __cvmx_app_init() populates this from the cvmx boot descriptor. 44 * u-boot, etc.) The cvmx_sysinfo_minimal_initialize() function is 87 * Several boards support compact flash on the Octeon boot 118 * Returns Pointer to the boot information structure 126 * Linux kernel, u-boot, etc.) to configure the minimal fields that
|
/linux-4.4.14/arch/mips/netlogic/xlr/ |
H A D | platform-flash.c | 171 /* Check for boot flash type */ xlr_flash_init() 174 /* On XLS, check boot from NAND bit (GPIO reset reg bit 16) */ xlr_flash_init() 178 /* check boot from PCMCIA, (GPIO reset reg bit 15 */ xlr_flash_init() 182 /* check boot from PCMCIA (bit 16 in GPIO reset on XLR) */ xlr_flash_init() 187 /* boot flash at chip select 0 */ xlr_flash_init()
|
/linux-4.4.14/arch/arm/mach-mvebu/ |
H A D | coherency_ll.S | 14 * CPUs during their early boot in an SMP kernel, this why this 16 * primary CPU from C code during its boot. 92 * CPU boot, and no stack is available at this point. 117 * CPU boot, and no stack is available at this point. 144 * CPU boot, and no stack is available at this point.
|
/linux-4.4.14/arch/arm/mach-ep93xx/ |
H A D | soc.h | 22 * asynchronous boot configuration. When ASDO is "1" (i.e. pulled-up) 23 * the synchronous boot mode is selected. When ASDO is "0" (i.e 24 * pulled-down) the asynchronous boot mode is selected. 26 * In synchronous boot mode nSDCE3 is decoded starting at physical address 28 * boot mode they are swapped with nCS0 decoded at 0x00000000 ann nSDCE3
|
/linux-4.4.14/include/linux/sunrpc/ |
H A D | cache.h | 160 * since boot. This is the best for measuring differences in 165 struct timespec boot; seconds_since_boot() local 166 getboottime(&boot); seconds_since_boot() 167 return get_seconds() - boot.tv_sec; seconds_since_boot() 172 struct timespec boot; convert_to_wallclock() local 173 getboottime(&boot); convert_to_wallclock() 174 return boot.tv_sec + sinceboot; convert_to_wallclock() 299 struct timespec boot; get_expiry() local 305 getboottime(&boot); get_expiry() 306 return rv - boot.tv_sec; get_expiry()
|
/linux-4.4.14/drivers/scsi/ |
H A D | iscsi_boot_sysfs.c | 2 * Export the iSCSI boot info to userland via sysfs. 26 MODULE_DESCRIPTION("sysfs interface and helpers to export iSCSI boot information"); 334 * the boot kobj was not setup and the normal release iscsi_boot_create_kobj() 357 * iscsi_boot_create_target() - create boot target sysfs dir 358 * @boot_kset: boot kset 365 * Note: The boot sysfs lib will free the data passed in for the caller 382 * iscsi_boot_create_initiator() - create boot initiator sysfs dir 383 * @boot_kset: boot kset 390 * Note: The boot sysfs lib will free the data passed in for the caller 408 * iscsi_boot_create_ethernet() - create boot ethernet sysfs dir 409 * @boot_kset: boot kset 416 * Note: The boot sysfs lib will free the data passed in for the caller 477 * @boot_kset: boot kset
|
H A D | t128.h | 39 * Note : a boot switch is provided for the purpose of informing the 40 * firmware to boot or not boot from attached SCSI devices. So, I imagine
|
/linux-4.4.14/arch/x86/platform/efi/ |
H A D | quirks.c | 24 * Some firmware implementations refuse to boot if there's insufficient 57 * Some firmware implementations refuse to boot if there's insufficient space 134 * whatever it wants with boot services code after ExitBootServices() has been 136 * continue calling into boot services code (SetVirtualAddressMap). In order to 137 * work around such buggy implementations we reserve boot services region during 165 memblock_dbg("Could not reserve boot range [0x%010llx-0x%010llx]\n", efi_reserve_boot_services() 185 /* Could not reserve boot area */ efi_free_boot_services()
|
/linux-4.4.14/arch/arm/mach-exynos/ |
H A D | platsmp.c | 244 * Synchronise with the boot thread. exynos_secondary_init() 255 * Try to set boot address using firmware first exynos_set_boot_addr() 256 * and fall back to boot register if it fails. exynos_set_boot_addr() 280 * Try to get boot address using firmware first exynos_get_boot_addr() 281 * and fall back to boot register if it fails. exynos_get_boot_addr() 308 * Set synchronisation state between this boot processor exynos_boot_secondary() 347 * the boot monitor to read the system wide flags register, exynos_boot_secondary() 432 * system-wide flags register. The boot monitor waits exynos_smp_prepare_cpus() 437 * boot register if it fails. exynos_smp_prepare_cpus()
|
/linux-4.4.14/arch/mips/fw/cfe/ |
H A D | cfe_api_int.h | 107 s64 fwi_bootarea_va; /* VA of boot area */ 108 s64 fwi_bootarea_pa; /* PA of boot area */ 109 s64 fwi_bootarea_size; /* size of boot area */
|
/linux-4.4.14/arch/arm/mach-pxa/ |
H A D | colibri-pxa3xx.c | 44 * If the bootloader passed in a serial boot tag, which contains a colibri_pxa3xx_init_eth() 58 printk(KERN_INFO "%s(): taking MAC from serial boot tag\n", colibri_pxa3xx_init_eth() 62 printk(KERN_INFO "%s(): no valid serial boot tag found, " colibri_pxa3xx_init_eth()
|
/linux-4.4.14/drivers/media/usb/dvb-usb/ |
H A D | af9005.c | 608 err("boot packet invalid boot packet type"); af9005_boot_packet() 618 err("boot packet bulk message failed: %d (%d/%d)", ret, af9005_boot_packet() 628 err("boot packet recv bulk message failed: %d", ret); af9005_boot_packet() 637 err("boot bad config header."); af9005_boot_packet() 641 err("boot bad config size."); af9005_boot_packet() 645 err("boot bad config sequence."); af9005_boot_packet() 649 err("boot bad config subtype."); af9005_boot_packet() 655 err("boot bad config checksum."); af9005_boot_packet() 662 err("boot bad confirm header."); af9005_boot_packet() 666 err("boot bad confirm size."); af9005_boot_packet() 670 err("boot bad confirm sequence."); af9005_boot_packet() 674 err("boot bad confirm subtype."); af9005_boot_packet() 680 err("boot bad confirm checksum."); af9005_boot_packet() 687 err("boot bad boot header."); af9005_boot_packet() 691 err("boot bad boot size."); af9005_boot_packet() 695 err("boot bad boot sequence."); af9005_boot_packet() 699 err("boot bad boot pattern 01."); af9005_boot_packet() 703 err("boot bad boot pattern 10."); af9005_boot_packet() 709 err("boot bad boot checksum."); af9005_boot_packet()
|
/linux-4.4.14/drivers/staging/rtl8192e/rtl8192e/ |
H A D | r8192E_firmware.h | 18 #define RTL8192E_BOOT_IMG_FW "RTL8192E/boot.img"
|
/linux-4.4.14/drivers/clocksource/ |
H A D | dummy_timer.c | 56 /* We won't get a call on the boot CPU, so register immediately */ dummy_timer_register()
|
H A D | metag_generic.c | 123 * For all non-boot CPUs we need to synchronize our free arch_timer_setup() 124 * running clock (TXTIMER) with the boot CPU's clock. arch_timer_setup() 173 /* Configure timer on boot CPU */ metag_generic_timer_init() 176 /* Hook cpu boot to configure other CPU's timers */ metag_generic_timer_init()
|
/linux-4.4.14/drivers/bcma/ |
H A D | driver_chipcommon_nflash.c | 37 cc->nflash.boot = true; bcma_nflash_init()
|
/linux-4.4.14/arch/sparc/prom/ |
H A D | bootstr_64.c | 12 /* WARNING: The boot loader knows that these next three variables come one right
|
/linux-4.4.14/arch/um/os-Linux/ |
H A D | registers.c | 34 /* This is set once at boot time and not changed thereafter */
|
/linux-4.4.14/arch/unicore32/boot/ |
H A D | Makefile | 2 # arch/unicore32/boot/Makefile
|
/linux-4.4.14/arch/x86/kernel/fpu/ |
H A D | bugs.c | 19 * some status at boot.
|
/linux-4.4.14/block/partitions/ |
H A D | atari.h | 26 char unused[0x156]; /* room for boot code */
|
H A D | mac.h | 28 char processor[16]; /* identifies ISA of boot */
|
/linux-4.4.14/crypto/ |
H A D | fips.c | 23 /* Process kernel command-line parameter at boot time. fips=0 or fips=1 */ fips_enable()
|
/linux-4.4.14/arch/alpha/boot/ |
H A D | head.S | 2 * arch/alpha/boot/head.S
|
/linux-4.4.14/arch/arc/boot/ |
H A D | Makefile | 4 # You will need to build u-boot for ARC, rename mkimage to arc-elf32-mkimage
|
/linux-4.4.14/arch/cris/boot/compressed/ |
H A D | Makefile | 2 # arch/cris/boot/compressed/Makefile
|
/linux-4.4.14/lib/xz/ |
H A D | xz_crc32.c | 21 * STATIC_RW_DATA is used in the pre-boot environment on some architectures.
|
/linux-4.4.14/include/linux/spi/ |
H A D | ds1305.h | 9 * backup power, and potentially on the first boot.
|
/linux-4.4.14/arch/powerpc/include/asm/ |
H A D | bootx.h | 3 * (for MacOS) when it is used to boot Linux.
|
/linux-4.4.14/arch/powerpc/include/uapi/asm/ |
H A D | bootx.h | 3 * (for MacOS) when it is used to boot Linux. 62 /* Here are the boot informations that are passed to the bootstrap 73 the frame buffer (for use by early boot message) */ 100 /* Optional pointer to boot ramdisk (offset from this structure) */
|
/linux-4.4.14/arch/m68k/ |
H A D | install.sh | 9 # Adapted from code in arch/i386/boot/Makefile by H. Peter Anvin
|
/linux-4.4.14/arch/microblaze/boot/ |
H A D | Makefile | 2 # arch/microblaze/boot/Makefile
|
/linux-4.4.14/arch/mips/loongson64/common/ |
H A D | cmdline.c | 36 /* arg[0] is "g", the rest is boot parameters */ prom_init_cmdline()
|
/linux-4.4.14/arch/mips/rb532/ |
H A D | setup.c | 2 * setup.c - boot time setup code
|
/linux-4.4.14/arch/nios2/boot/ |
H A D | install.sh | 9 # Adapted from code in arch/i386/boot/Makefile by H. Peter Anvin
|