arch/powerpc/boot/elf.h

Source file repositories/reference/linux-study-clean/arch/powerpc/boot/elf.h

File Facts

System
Linux kernel
Corpus path
arch/powerpc/boot/elf.h
Extension
.h
Size
4046 bytes
Lines
159
Domain
Architecture Layer
Bucket
arch/powerpc
Inferred role
Architecture Layer: implementation source
Status
source implementation candidate

Why This File Exists

CPU and platform-specific kernel glue: boot entry, traps, syscall entry, interrupts, page tables, context switch, and low-level barriers.

Dependency Surface

Detected Declarations

Annotated Snippet

struct elf_info {
	unsigned long loadsize;
	unsigned long memsize;
	unsigned long elfoffset;
};
int parse_elf64(void *hdr, struct elf_info *info);
int parse_elf32(void *hdr, struct elf_info *info);

#endif				/* _PPC_BOOT_ELF_H_ */

Annotation

Implementation Notes