mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-21 05:43:09 +00:00
5cf859d9d9
... parts of the config tuple. While here, remove parts that are setting portions of the target tuple to a value that's already the default. Signed-off-by: Alexey Neyman <stilor@att.net>
25 lines
364 B
Bash
25 lines
364 B
Bash
# This file declares functions for bare metal kernel (IE. none)
|
|
# Copyright 2008 Yann E. MORIN
|
|
# Licensed under the GPL v2. See COPYING in the root of this package
|
|
|
|
CT_DoKernelTupleValues()
|
|
{
|
|
# For bare-metal, there is no kernel part in the tuple
|
|
CT_TARGET_KERNEL=
|
|
}
|
|
|
|
do_kernel_get()
|
|
{
|
|
:
|
|
}
|
|
|
|
do_kernel_extract()
|
|
{
|
|
:
|
|
}
|
|
|
|
do_kernel_headers()
|
|
{
|
|
:
|
|
}
|