代码搜索:zImage
找到约 461 项符合「zImage」的源代码
代码结果 461
www.eeworm.com/read/316872/3588321
s zimage.lds.s
OUTPUT_ARCH(powerpc:common)
ENTRY(_zimage_start)
EXTERN(_zimage_start)
SECTIONS
{
. = (4*1024*1024);
_start = .;
.text :
{
*(.text)
*(.fixup)
}
_etext = .;
. = ALIGN(4096);
www.eeworm.com/read/316872/3604204
txt zimage_layout.txt
Information about the Linux/PPC kernel images
=====================================================================
Please mail me (Cort Dougan, cort@fsmlabs.com) if you have questions,
com
www.eeworm.com/read/292705/3949063
txt zimage_layout.txt
Information about the Linux/PPC kernel images
=====================================================================
Please mail me (Cort Dougan, cort@fsmlabs.com) if you have questions,
com
www.eeworm.com/read/439082/1819087
txt zimage_layout.txt
Information about the Linux/PPC kernel images
=====================================================================
Please mail me (Cort Dougan, cort@fsmlabs.com) if you have questions,
com
www.eeworm.com/read/430518/1928007
txt zimage_layout.txt
Information about the Linux/PPC kernel images
=====================================================================
Please mail me (Cort Dougan, cort@fsmlabs.com) if you have questions,
com
www.eeworm.com/read/152843/5660215
scr vmlinux.scr
SECTIONS
{
.data : {
zimage_data = .;
*(.data)
zimage_data_end = .;
}
zimage_len = zimage_data_end - zimage_data;
}
www.eeworm.com/read/168764/9898045
21_test zimage_v.4.21_test
www.eeworm.com/read/316872/3588298
s zimage.coff.lds.s
OUTPUT_ARCH(powerpc:common)
ENTRY(_zimage_start_opd)
EXTERN(_zimage_start_opd)
SECTIONS
{
. = (5*1024*1024);
_start = .;
.text :
{
*(.text)
*(.fixup)
}
_etext = .;
. = ALIGN
www.eeworm.com/read/152843/5660636
makefile
# This is far from simple, but I couldn't think of a good name. This is
# for making the 'zImage' or 'zImage.initrd' on a number of targets.
#
# Author: Tom Rini
#
# Notes:
# (1) F
www.eeworm.com/read/196669/8068281
makefile
include makeconfig
OBJS =head.o kernel.o device.o mm.o lib.o fs.o
zImage_tmp: $(OBJS)
$(LD) -TApOS.lds $(OBJS) -o zImage_tmp.o $(LDFLAGS) -lgcc
$(OBJCOPY) -O binary -S zImage_tmp.o zImage
rm -f *