mirror of
https://github.com/ivoszbg/uniLoader.git
synced 2024-11-21 19:40:07 +00:00
9c60b66f71
This actually breaks the armv7 port. It has to be revisited in the future, since it not only is not compilable right now, but also cannot boot linux properly. TODO Also introduce a new C-based __memcpy_optimized that does not cause an exception on some devices when copying the initramfs. This issue has to be debugged further. Signed-off-by: Ivaylo Ivanov <ivo.ivanov.ivanov1@gmail.com>
53 lines
1.3 KiB
Plaintext
53 lines
1.3 KiB
Plaintext
#
|
|
# For a description of the syntax of this configuration file,
|
|
# see Documentation/kbuild/kconfig-language.txt.
|
|
#
|
|
mainmenu "uniLoader Configuration"
|
|
|
|
menu "Building options"
|
|
config CROSS_COMPILE
|
|
string "Cross-compiler tool prefix"
|
|
help
|
|
Same as running 'make CROSS_COMPILE=prefix-' but stored for
|
|
default make runs in this kernel build directory. You don't
|
|
need to set this unless you want the configured kernel build
|
|
directory to select the cross-compiler automatically.
|
|
|
|
config LOGLEVEL
|
|
int "Verbosity of logs"
|
|
default 7
|
|
|
|
config EMBED_LINUX
|
|
bool "Embed linux kernel and device tree"
|
|
default y
|
|
help
|
|
Select this if you want uniLoader to load a linux kernel and device tree
|
|
|
|
config KERNEL_PATH
|
|
string "Path to kernel image"
|
|
depends on EMBED_LINUX
|
|
default blob/Image
|
|
help
|
|
Path to the kernel, which is going to get embedded to uniLoader
|
|
|
|
config DT_PATH
|
|
string "Path to device tree image"
|
|
depends on EMBED_LINUX
|
|
default blob/dtb
|
|
help
|
|
Path to the device tree, which is going to get embedded to uniLoader
|
|
|
|
config RAMDISK_PATH
|
|
string "Path to ramdisk image"
|
|
depends on EMBED_LINUX
|
|
default blob/ramdisk
|
|
help
|
|
Path to the ramdisk, which is going to get embedded to uniLoader
|
|
endmenu
|
|
|
|
source "lib/Kconfig"
|
|
|
|
source "soc/Kconfig"
|
|
|
|
source "board/Kconfig"
|