Changes to Config.in
This commit is contained in:
parent
7cd9186696
commit
cbe3f2b4fd
1 changed files with 34 additions and 20 deletions
54
Config.in
54
Config.in
|
@ -255,6 +255,21 @@ depends on BOOK_HLFS
|
||||||
|
|
||||||
#-----------------------
|
#-----------------------
|
||||||
|
|
||||||
|
config BUILDDIR
|
||||||
|
string "Build Directory"
|
||||||
|
default "/mnt/build_dir"
|
||||||
|
help
|
||||||
|
#--- The directory where the created system will be located.
|
||||||
|
|
||||||
|
config SRC_ARCHIVE
|
||||||
|
string "Package Archive Directory"
|
||||||
|
default "$SRC_ARCHIVE"
|
||||||
|
help
|
||||||
|
#--- A local archive for packages/file (not BUILDDIR/sources)
|
||||||
|
# Used only if GETPKG = 1
|
||||||
|
# Any missing file will be downloaded and archived here,
|
||||||
|
# if the user has the right priviledges.
|
||||||
|
|
||||||
|
|
||||||
config CONFIG_GETPKG
|
config CONFIG_GETPKG
|
||||||
bool "Retrieve source files"
|
bool "Retrieve source files"
|
||||||
|
@ -443,36 +458,35 @@ depends on BOOK_HLFS
|
||||||
default "letter" if PAGE_LETTER
|
default "letter" if PAGE_LETTER
|
||||||
default "A4" if PAGE_A4
|
default "A4" if PAGE_A4
|
||||||
|
|
||||||
config BUILDDIR
|
config HAVE_FSTAB
|
||||||
string "Build Directory"
|
bool "Use this fstab file"
|
||||||
default "/mnt/build_dir"
|
default n
|
||||||
help
|
help
|
||||||
#--- The directory where the created system will be located.
|
#--- The location of fstab file (if empty, a template is created)
|
||||||
|
|
||||||
config SRC_ARCHIVE
|
|
||||||
string "Package Archive Directory"
|
|
||||||
default "$SRC_ARCHIVE"
|
|
||||||
help
|
|
||||||
#--- A local archive for packages/file (not BUILDDIR/sources)
|
|
||||||
# Used only if GETPKG = 1
|
|
||||||
# Any missing file will be downloaded and archived here,
|
|
||||||
# if the user has the right priviledges.
|
|
||||||
|
|
||||||
config FSTAB
|
config FSTAB
|
||||||
string "Fstab file (optional)"
|
string "Fstab file (optional)"
|
||||||
default ""
|
default "***EDIT ME***"
|
||||||
|
depends on HAVE_FSTAB
|
||||||
help
|
help
|
||||||
#--- Location of fstab file (if empty, a template is created)
|
#--- The location of fstab file (if empty, a template is created)
|
||||||
|
|
||||||
|
config CONFIG_BUILD_KERNEL
|
||||||
|
bool "Build the kernel"
|
||||||
|
default n
|
||||||
|
help
|
||||||
|
#--- Select this option if you wish to build the kernel.
|
||||||
|
#
|
||||||
|
# You will be prompted for the full path to the .config
|
||||||
|
# file. It will be copied to the 'sources' directory and
|
||||||
|
# rename kernel-config
|
||||||
config CONFIG
|
config CONFIG
|
||||||
string "Kernel config file (optional)"
|
string "Kernel config file"
|
||||||
default ""
|
default "***EDIT ME***"
|
||||||
|
depends on CONFIG_BUILD_KERNEL
|
||||||
help
|
help
|
||||||
#--- Fully qualified path to a kernel config file
|
#--- Fully qualified path to a kernel config file
|
||||||
# The config file will be copied to ${BUILD_DIR}/sources
|
# The config file will be copied to ${BUILD_DIR}/sources
|
||||||
# and renamed 'kernel-config'
|
# and renamed 'kernel-config'
|
||||||
#
|
|
||||||
# If no config file is specified the kernel is NOT compiled
|
|
||||||
|
|
||||||
config KEYMAP
|
config KEYMAP
|
||||||
string "Keyboard map"
|
string "Keyboard map"
|
||||||
|
|
Reference in a new issue