1
0
Fork 0
mirror of https://github.com/tailix/kernel.git synced 2024-11-20 11:16:10 -05:00

Remove configurator

This commit is contained in:
Braiden Vasco 2017-11-09 15:37:11 +00:00
parent d3e25bf3a3
commit 867391da4b
4 changed files with 2 additions and 41 deletions

View file

@ -1,4 +1,5 @@
include config.mk
export ARCH = x86
export CCPREFIX = i686-elf-
export AR = $(CCPREFIX)ar
export AS = $(CCPREFIX)as

View file

@ -12,25 +12,3 @@ Glossary
* (`unsigned long`) `size` - size in bytes
* (`unsigned int`) `length` - number of entries
* (`unsigned int`) `slen` - string length excluding the terminating null byte
Dependencies
------------
### Build youself:
* Cross-compiler for i686-elf
### Debian 9.2 packages:
* make
* grub-pc-bin
* qemu-system-x86
Build and run
-------------
```sh
./configure
make clean
make run
```

View file

@ -1,2 +0,0 @@
export ARCH = x86
export CCPREFIX = i686-elf-

16
configure vendored
View file

@ -1,16 +0,0 @@
#!/bin/sh -e
ENV="$1"
if [ -z "$ENV" ]; then
ENV='x86'
fi
CONFIG="arch/$ENV/config.mk"
if [ ! -f "$CONFIG" ]; then
echo >&2 "ERROR: file "$CONFIG" does not exist"
exit 1
fi
cp "$CONFIG" 'config.mk'