You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
299 B
22 lines
299 B
#!/bin/bash
|
|
|
|
KERNEL_MAKE_DIRECTIVE="linux"
|
|
KERNEL_MAKE_DIRECTIVE_2=""
|
|
KERNEL_BINARY="linux"
|
|
|
|
[ -z "${MAKEOPTS}" ] && MAKEOPTS="-j2"
|
|
|
|
KERNEL_MAKE="make ARCH=um"
|
|
UTILS_MAKE=make
|
|
|
|
KERNEL_CC=gcc
|
|
KERNEL_AS=as
|
|
KERNEL_LD=ld
|
|
|
|
UTILS_CC=gcc
|
|
UTILS_AS=as
|
|
UTILS_LD=ld
|
|
|
|
COMPRESS_INITRD=yes
|
|
ARCH_HAVENOPREPARE=yes
|