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.
21 lines
311 B
21 lines
311 B
#!/bin/bash
|
|
# x86/config.sh
|
|
|
|
KERNEL_MAKE="bzImage"
|
|
KERNEL_BINARY="arch/i386/boot/bzImage"
|
|
|
|
# The dietlibc portion of busybox is commented out right now
|
|
# other stuff seems to compile fine though
|
|
USE_DIETLIBC=1
|
|
|
|
KERNEL_CC=gcc
|
|
KERNEL_AS=as
|
|
KERNEL_LD=ld
|
|
|
|
UTILS_CC=gcc
|
|
UTILS_AS=as
|
|
UTILS_LD=ld
|
|
|
|
COMPRESS_INITRD=yes
|
|
|