Home
last modified time | relevance | path

Searched full:boot (Results 1 – 25 of 2215) sorted by relevance

12345678910>>...89

/linux-3.3/drivers/isdn/hysdn/
Dhysdn_boot.c29 /* definition of boot specific data area. This data is only */
30 /* needed during boot and so allocated dynamically. */
57 StartDecryption(struct boot_data *boot) in StartDecryption() argument
59 boot->Cryptor = CRYPT_STARTTERM; in 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) in DecryptBuf() argument
72 unsigned char *bufp = boot->buf.BootBuf; in DecryptBuf()
75 boot->Cryptor = (boot->Cryptor >> 1) ^ ((boot->Cryptor & 1U) ? CRYPT_FEEDTERM : 0); in DecryptBuf()
76 *bufp++ ^= (unsigned char)boot->Cryptor; in DecryptBuf()
[all …]
/linux-3.3/Documentation/powerpc/
Dbootwrapper.txt1 The PowerPC boot wrapper
6 a boot wrapper to make it usable by the system firmware. There is no
7 standard PowerPC firmware interface, so the boot wrapper is designed to
10 The boot wrapper can be found in the arch/powerpc/boot/ directory. The
15 others. U-Boot is typically found on embedded PowerPC hardware, but there
19 The boot wrapper is built from the makefile in arch/powerpc/boot/Makefile and
20 it uses the wrapper script (arch/powerpc/boot/wrapper) to generate target
25 U-Boot (for versions that don't understand the device
27 the image. The boot wrapper, kernel and device tree
28 are all embedded inside the U-Boot uImage file format
[all …]
/linux-3.3/Documentation/arm/
DBooting9 In order to boot ARM Linux, you require a boot loader, which is a small
10 program that runs before the main kernel. The boot loader is expected
14 Essentially, the boot loader should provide (as a minimum) the
27 Existing boot loaders: MANDATORY
28 New boot loaders: MANDATORY
30 The boot loader is expected to find and initialise all RAM that the
34 the RAM in the machine, or any other method the boot loader designer
41 Existing boot loaders: OPTIONAL, RECOMMENDED
42 New boot loaders: OPTIONAL, RECOMMENDED
44 The boot loader should initialise and enable one serial port on the
[all …]
/linux-3.3/Documentation/x86/
Dboot.txt1 THE LINUX/x86 BOOT PROTOCOL
4 On the x86 platform, the Linux kernel uses a rather complicated boot
11 Currently, the following versions of the Linux/x86 boot protocol exist.
18 boot loader and the kernel. setup.S made relocatable,
40 the boot command line.
42 Protocol 2.07: (Kernel 2.6.24) Added paravirtualised boot protocol.
55 pref_address fields. Added extended boot loader IDs.
71 | Kernel boot sector | The kernel legacy boot sector.
75 | Boot loader | <- Boot sector entry point 0000:7C00
86 0x100000 ("high memory"), and the kernel real-mode block (boot sector,
[all …]
/linux-3.3/arch/xtensa/boot/boot-elf/
DMakefile19 boot-y := bootstrap.o
21 OBJS := $(addprefix $(obj)/,$(boot-y))
23 Image: vmlinux $(OBJS) arch/$(ARCH)/boot/boot-elf/boot.lds
31 -T arch/$(ARCH)/boot/boot-elf/boot.lds \
32 -o arch/$(ARCH)/boot/$@.elf $@.tmp
37 --add-section .initrd=arch/$(ARCH)/boot/ramdisk \
45 -T $(srctree)/arch/$(ARCH)/boot/boot-elf/boot.ld \
46 -o arch/$(ARCH)/boot/$@.elf $@.tmp
/linux-3.3/arch/avr32/
DMakefile31 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) $@
[all …]
/linux-3.3/arch/alpha/
DMakefile46 # export what is needed by arch/alpha/boot/Makefile
50 boot := arch/alpha/boot macro
53 all boot: $(boot)/vmlinux.gz target
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)'
[all …]
/linux-3.3/arch/unicore32/
D.gitignore10 # Generated images in boot
12 boot/Image
13 boot/zImage
14 boot/uImage
16 # Generated files in boot/compressed
18 boot/compressed/piggy.S
19 boot/compressed/piggy.gzip
20 boot/compressed/vmlinux
21 boot/compressed/vmlinux.lds
DMakefile43 boot := arch/unicore32/boot macro
52 $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@
55 $(Q)$(MAKE) $(clean)=$(boot)
58 echo '* zImage - Compressed kernel image (arch/$(ARCH)/boot/zImage)'
59 echo ' Image - Uncompressed kernel image (arch/$(ARCH)/boot/Image)'
60 echo ' uImage - U-Boot wrapped zImage'
/linux-3.3/scripts/package/
Dbuildtar53 mkdir -p -- "${tmpdir}/boot"
67 cp -v -- "${objtree}/System.map" "${tmpdir}/boot/System.map-${KERNELRELEASE}"
68 cp -v -- "${objtree}/.config" "${tmpdir}/boot/config-${KERNELRELEASE}"
69 cp -v -- "${objtree}/vmlinux" "${tmpdir}/boot/vmlinux-${KERNELRELEASE}"
77 …[ -f "${objtree}/arch/x86/boot/bzImage" ] && cp -v -- "${objtree}/arch/x86/boot/bzImage" "${tmpdir…
80 …[ -f "${objtree}/arch/alpha/boot/vmlinux.gz" ] && cp -v -- "${objtree}/arch/alpha/boot/vmlinux.gz"…
83 [ -f "${KBUILD_IMAGE}" ] && cp -v -- "${KBUILD_IMAGE}" "${tmpdir}/boot/vmlinux-${KERNELRELEASE}"
84 …[ -f "${objtree}/lifimage" ] && cp -v -- "${objtree}/lifimage" "${tmpdir}/boot/lifimage-${KERNELRE…
87 …[ -f "${objtree}/vmlinux.SYS" ] && cp -v -- "${objtree}/vmlinux.SYS" "${tmpdir}/boot/vmlinux-${KER…
88 …[ -f "${objtree}/vmlinux.dsk" ] && cp -v -- "${objtree}/vmlinux.dsk" "${tmpdir}/boot/vmlinux-${KER…
[all …]
Dmkspec78 echo 'mkdir -p $RPM_BUILD_ROOT/boot/efi $RPM_BUILD_ROOT/lib/modules'
81 echo 'mkdir -p $RPM_BUILD_ROOT/boot $RPM_BUILD_ROOT/lib/modules'
87 echo 'cp $KBUILD_IMAGE $RPM_BUILD_ROOT'"/boot/efi/vmlinuz-$KERNELRELEASE"
88 echo 'ln -s '"efi/vmlinuz-$KERNELRELEASE" '$RPM_BUILD_ROOT'"/boot/"
91 echo "cp vmlinux arch/powerpc/boot"
92 echo "cp arch/powerpc/boot/"'$KBUILD_IMAGE $RPM_BUILD_ROOT'"/boot/vmlinuz-$KERNELRELEASE"
94 echo 'cp $KBUILD_IMAGE $RPM_BUILD_ROOT'"/boot/vmlinuz-$KERNELRELEASE"
99 echo 'cp System.map $RPM_BUILD_ROOT'"/boot/System.map-$KERNELRELEASE"
101 echo 'cp .config $RPM_BUILD_ROOT'"/boot/config-$KERNELRELEASE"
106 echo 'mv vmlinux.bz2 $RPM_BUILD_ROOT'"/boot/vmlinux-$KERNELRELEASE.bz2"
[all …]
/linux-3.3/arch/blackfin/
DMakefile141 $(Q)$(MAKE) $(clean)=$(boot)
144 boot := arch/$(ARCH)/boot macro
147 KBUILD_IMAGE := $(boot)/vmImage
152 $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@
155 $(Q)$(MAKE) $(build)=$(boot) BOOTIMAGE=$(KBUILD_IMAGE) install
159 …echo ' vmImage.bin - Uncompressed Kernel-only image for U-Boot (arch/$(ARCH)/boot/vmImage.bi…
160 echo ' vmImage.bz2 - Kernel-only image for U-Boot (arch/$(ARCH)/boot/vmImage.bz2)'
161 echo '* vmImage.gz - Kernel-only image for U-Boot (arch/$(ARCH)/boot/vmImage.gz)'
162 echo ' vmImage.lzma - Kernel-only image for U-Boot (arch/$(ARCH)/boot/vmImage.lzma)'
163 echo ' vmImage.lzo - Kernel-only image for U-Boot (arch/$(ARCH)/boot/vmImage.lzo)'
[all …]
/linux-3.3/arch/x86/
DMakefile152 # boot loader support. Several targets are kept for legacy purposes
154 boot := arch/x86/boot macro
164 KBUILD_IMAGE := $(boot)/bzImage
170 $(Q)$(MAKE) $(build)=$(boot) $(KBUILD_IMAGE)
171 $(Q)mkdir -p $(objtree)/arch/$(UTS_MACHINE)/boot
172 $(Q)ln -fsn ../../x86/boot/bzImage $(objtree)/arch/$(UTS_MACHINE)/boot/$@
175 $(Q)$(MAKE) $(build)=$(boot) $@
179 $(Q)$(MAKE) $(build)=$(boot) $@
188 $(Q)$(MAKE) $(clean)=$(boot)
191 echo '* bzImage - Compressed kernel image (arch/x86/boot/bzImage)'
[all …]
/linux-3.3/arch/cris/
DMakefile71 boot := arch/cris/boot macro
77 $(Q)$(MAKE) $(build)=$(boot) MACHINE=$(MACHINE) $(boot)/$@
82 $(Q)if [ -e arch/cris/boot ]; then \
83 $(MAKE) $(clean)=arch/cris/boot; \
87 $(boot)/zImage \
88 $(boot)/compressed/decompress.bin \
89 $(boot)/compressed/piggy.gz \
90 $(boot)/rescue/rescue.bin
96 echo '* zImage - Compressed kernel image (arch/cris/boot/zImage)'
97 echo '* Image - Uncompressed kernel image (arch/cris/boot/Image)'
/linux-3.3/arch/c6x/
DMakefile35 boot := arch/$(ARCH)/boot macro
42 core-y += $(boot)/
48 $(Q)$(MAKE) $(build)=$(boot) $(patsubst %,$(boot)/%,$@)
51 $(Q)$(MAKE) $(build)=$(boot) $(patsubst %,$(boot)/%,$@)
54 $(Q)$(MAKE) $(clean)=$(boot)
57 @echo ' vmlinux.bin - Binary kernel image (arch/$(ARCH)/boot/vmlinux.bin)'
58 @echo ' dtbImage.<dt> - ELF image with $(arch)/boot/dts/<dt>.dts linked in'
/linux-3.3/arch/xtensa/boot/
DMakefile2 # 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
/linux-3.3/arch/sparc/
DMakefile75 # Export what is needed by arch/sparc/boot/Makefile
86 boot := arch/sparc/boot macro
92 $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@
95 $(Q)$(MAKE) $(clean)=$(boot)
98 KBUILD_IMAGE := $(boot)/zImage
103 echo '* image - kernel image ($(boot)/image)'
104 echo '* zImage - stripped kernel image ($(boot)/zImage)'
105 echo ' uImage - U-Boot SPARC32 Image (only for LEON)'
111 echo '* zImage - stripped and compressed sparc64 kernel ($(boot)/zImage)'
/linux-3.3/arch/microblaze/
DMakefile54 boot := arch/microblaze/boot macro
60 core-y += $(boot)/
77 $(Q)$(MAKE) $(clean)=$(boot)
80 $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@
82 $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@
87 echo ' simpleImage.<dt> - ELF image with $(arch)/boot/dts/<dt>.dts linked in'
95 echo ' name of a dts file from the arch/microblaze/boot/dts/ directory'
99 MRPROPER_FILES += $(boot)/simpleImage.*
/linux-3.3/arch/powerpc/
DMakefile17 # Set default 32 bits cross compilers for vdso and boot wrapper
172 boot := arch/$(ARCH)/boot macro
186 $(Q)$(MAKE) ARCH=ppc64 $(build)=$(boot) $(patsubst %,$(boot)/%,$@)
188 $(Q)$(MAKE) ARCH=ppc64 $(build)=$(boot) $(patsubst %,$(boot)/%,$@)
192 $(Q)$(MAKE) ARCH=ppc64 $(build)=$(boot) $(patsubst %,$(boot)/%,$@)
195 $(Q)$(MAKE) ARCH=ppc64 $(build)=$(boot) $(patsubst %,$(boot)/%,$@)
199 @echo ' zImage.* - Compressed kernel image (arch/$(ARCH)/boot/zImage.*)'
200 @echo ' uImage - U-Boot native image format'
201 @echo ' cuImage.<dt> - Backwards compatible U-Boot image for older'
205 @echo ' treeImage.<dt> - Support for older IBM 4xx firmware (not U-Boot)'
[all …]
/linux-3.3/arch/arm/boot/dts/
Dpicoxcell-pc7302-pc3x2.dts54 boot@100000 {
55 label = "Boot";
59 redundant-boot@200000 {
60 label = "Redundant Boot";
64 boot-env@300000 {
65 label = "Boot Evironment";
69 redundant-boot-env@320000 {
70 label = "Redundant Boot Environment";
Dpicoxcell-pc7302-pc3x3.dts60 boot@100000 {
61 label = "Boot";
65 redundant-boot@200000 {
66 label = "Redundant Boot";
70 boot-env@300000 {
71 label = "Boot Evironment";
75 redundant-boot-env@320000 {
76 label = "Redundant Boot Environment";
/linux-3.3/Documentation/mmc/
Dmmc-dev-parts.txt7 As of this writing, MMC boot partitions as supported and exposed as
11 MMC Boot Partitions
14 Read and write access is provided to the two MMC boot partitions. Due to
15 the sensitive nature of the boot partition contents, which often store
29 The boot partitions can also be locked read only until the next power on,
35 not support boot partition locking, the file will not exist. If the
38 The boot partitions can also be locked permanently, but this feature is
/linux-3.3/drivers/firmware/
DKconfig9 tristate "BIOS Enhanced Disk Drive calls determine boot disk"
14 BIOS tries boot from. This information is then exported via sysfs.
16 This option is experimental and is known to fail to boot on some
69 you must specify the "console=hcdp" kernel boot argument.
128 bool "iSCSI Boot Firmware Table Attributes"
133 in which the ISCSI Boot Firmware Table (iBFT) resides. This
134 is necessary for iSCSI Boot Firmware Table Attributes module to work
138 tristate "iSCSI Boot Firmware Table Attributes module"
144 Boot Firmware Table (iBFT) via sysfs to userspace. If you wish to
145 detect iSCSI boot parameters dynamically during system boot, say Y.
/linux-3.3/arch/s390/
DMakefile46 KBUILD_IMAGE :=arch/s390/boot/image
105 boot := arch/s390/boot macro
110 $(Q)$(MAKE) $(build)=$(boot) $@
113 $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@
116 $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@
125 $(Q)$(MAKE) $(clean)=$(boot)
129 echo '* image - Kernel image for IPL ($(boot)/image)'
130 echo '* bzImage - Compressed kernel image for IPL ($(boot)/bzImage)'
/linux-3.3/Documentation/filesystems/nfs/
Dnfsroot.txt39 When the kernel has been loaded by a boot loader (see below) it needs to be
85 `nfsaddrs', but now the boot-time IP configuration works independently of
165 log at boot time so that administrators can verify that the correct
186 3.) Boot Loader
195 When building kernels, an easy way to create a boot floppy that uses
210 a floppy using dd, configure the boot device using rdev, and
211 boot using the resulting floppy. Linux no longer supports this
224 The resulting iso image will be arch/<ARCH>/boot/image.iso
229 cdrecord dev=ATAPI:1,0,0 arch/x86/boot/image.iso
251 loadlin may be used to boot Linux from a DOS command prompt without
[all …]

12345678910>>...89