⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile

📁 freebsd v4.4内核源码
💻
字号:
# $FreeBSD: src/sys/i386/boot/rawboot/Makefile,v 1.3.2.4 1999/09/05 08:10:48 peter Exp $#PROG=	boot# Order is very important on the SRCS line for this progSRCS=	start.S table.c boot2.S boot.c asm.S bios.S serial.SSRCS+=  probe_keyboard.c io.c disk.c sys.c.PATH:	${.CURDIR}/../biosbootBINDIR=		/usr/mdecBINMODE=	444CFLAGS=		-O2 -malign-functions=0 -malign-jumps=0 -malign-loops=0 \		-DRAWBOOT \		-I${.CURDIR}/../biosboot \		-DBOOTWAIT=${BOOTWAIT} -DTIMEOUT=${TIMEOUT}CFLAGS+=	-DBOOTSEG=${BOOTSEG} -DBOOTSTACK=${BOOTSTACK}CFLAGS+=	-I${.CURDIR}/../../..CFLAGS+=	${CWARNFLAGS}# By default, if a serial port is going to be used as console, use COM1# (aka /dev/ttyd0).BOOT_COMCONSOLE_PORT?=0x3F8CFLAGS+=	-DCOMCONSOLE=${BOOT_COMCONSOLE_PORT}BOOT_COMCONSOLE_SPEED?=9600CFLAGS+=	-DCONSPEED=${BOOT_COMCONSOLE_SPEED}# Enable code to take the default boot string from a fixed location on the# disk.  See nextboot(8) and README.386BSD for more info.#CFLAGS+=	-DNAMEBLOCK#CFLAGS+=	-DNAMEBLOCK_WRITEBACK# Bias the conversion from the BIOS drive number to the FreeBSD unit number# for hard disks.  This may be useful for people booting in a mixed IDE/SCSI# environment (set BOOT_HD_BIAS to the number of IDE drives).#CFLAGS+=	-DBOOT_HD_BIAS=1## Details: this only applies if BOOT_HD_BIAS > 0.  If the BIOS drive number# for the boot drive is >= BOOT_HD_BIAS, then the boot drive is assumed to# be SCSI and have unit number (BIOS_drive_number - BOOT_HD_BIAS).  E.g.,# BOOT_HD_BIAS=1 makes BIOS drive 1 correspond to 1:sd(0,a) instead of# 1:wd(1,a).  If `sd' is given explicitly, then the drive is assumed to be# SCSI and have BIOS drive number (sd_unit_number + BOOT_HD_BIAS).  E.g.,# BOOT_HD_BIAS=1 makes sd(0,a) correspond to 1:sd(0,a) instead of 0:sd(0,a).CLEANFILES+=	boot.nohdr boot.strip rawboot sizetestLDFLAGS+=	-N -T 0 -nostdlibNOSHARED=	YESNOMAN=STRIP=# tunable timeout parameter, waiting for keypress, calibrated in msBOOTWAIT?=	5000# tunable timeout during string input, calibrated in ms#TIMEOUT?=	30000# Location that boot2 is loaded atBOOTSEG=	0x1000# Offset in BOOTSEG for the top of the stack, keep this 16 byte alignedBOOTSTACK=	0xFFF0boot.strip:	boot	cp -p boot boot.strip	strip boot.strip	size boot.stripboot.nohdr:	boot.strip	dd if=boot.strip of=boot.nohdr ibs=32 skip=1 obs=1024b	ls -l boot.nohdrrawboot:	boot.nohdr	dd if=boot.nohdr of=rawboot bs=8k count=1 conv=syncall:		rawbootinstall:	${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE}\		rawboot ${DESTDIR}${BINDIR}/rawboot.include <bsd.kern.mk>.include <bsd.prog.mk>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -