forked from philpagel/debian-headless
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makevars
58 lines (47 loc) · 1.52 KB
/
Makevars
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# Configuration
# Source ISO image file
SOURCE = debian-12.5.0-amd64-netinst.iso
# Target ISO image file
TARGET = debian-12.5.0-amd64-netinst-hl.iso
# Image label (must be ≤ 32 chars)
LABEL = Debian-12.5.0-amd64-headless
# Machine architecture (only `amd64` or `i368` will work)
ARCH = amd64
#ARCH = i386
# Where to find the usb drive
# CAUTION: if set incorrectly you may ruin your system!
USBDEV = /dev/null
#USBDEV = /dev/sda
############################################################
# You can probably leave alone everything below this line
############################################################
# Console configuration
#
# Format: DEV[,PARMS]
#
# DEV: typically ttyS0, ttyS1 or ttyUSB0
#
# SERIALPARMS format (according to LINUX kenrel documentation):
# depend on the driver. For the serial port this
# defines the baudrate/parity/bits/flow control of
# the port, in the format BBBBPNF, where BBBB is the
# speed, P is parity (n/o/e), N is number of bits,
# and F is flow control ('r' for RTS). Default is
# 9600n8. The maximum baudrate is 115200.
# For serial console:
CONSOLE = ttyS0,115200n8
# For local console (normal non-headless installation):
#CONSOLE = tty0
# Folder for image unpacking
TMP = tmp
ISOLINUX_CFG_TEMPLATE = templates/isolinux.cfg.template
GRUB_CFG_TEMPLATE = templates/grub.cfg.template
# set architecture-dependent variables
ifeq "${ARCH}" "amd64"
ARCHFOLDER = amd
QEMU = qemu-system-x86_64
else ifeq "${ARCH}" "i386"
ARCHFOLDER = 386
QEMU = qemu-system-i386
endif
# vim: set syntax=make :