-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathconfig.inc
More file actions
47 lines (34 loc) · 818 Bytes
/
config.inc
File metadata and controls
47 lines (34 loc) · 818 Bytes
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
# config.inc
# Define environment variables
# Mount point to build into
# This should be the root of the new partition
LFS=/mnt/lfs
# Where to build the tool chain
TOOLS=/tools
# Where the build system is installed
# This directory is appended to $LFS
PARENT=/usr/src/mylfs
# LFS user name
# System will build with this user
LFS_USER="lfs"
USER=$LFS_USER
# Compilation target
LFS_TGT="$(uname -m)-lfs-linux-gnu"
# Make flags
MKFLAGS="-j $(getconf _NPROCESSORS_ONLN)"
# Device to install GRUB
DEVICE=/dev/sdb3
# partition to mount to $LFS/boot
BOOT_DEVICE=/dev/sdb2
# Filesystem type
FILESYSTEM=ext4
# Name of the log file
LOGFILE="$(date +%Y-%m-%d).log"
# Directories
SOURCESDIR="SOURCES"
BUILDDIR="BUILD"
BUILDROOTDIR="BUILDROOT"
RPMSDIR="RPMS"
SRPMSDIR="SRPMS"
LOGDIR="LOGS"
# vim: syntax=sh:ts=4:sw=4: