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.
17 lines
235 B
17 lines
235 B
21 years ago
|
#!/bin/bash
|
||
|
# x86-config.sh
|
||
|
|
||
|
KERNEL_MAKE="bzImage"
|
||
|
KERNEL_BINARY="arch/i386/boot/bzImage"
|
||
|
|
||
|
# Busybox 1.00-pre3 won't build with dietlibc, when it does we
|
||
|
# can turn this flag on
|
||
|
USE_DIETLIBC=0
|
||
|
|
||
|
CC=gcc
|
||
|
AS=as
|
||
|
LD=ld
|
||
|
|
||
|
COMPRESS_INITRD=yes
|
||
|
|