changed name x86 to i386
This commit is contained in:
parent
91d6d126e8
commit
02d0ddaf02
24 changed files with 5 additions and 4 deletions
|
|
@ -1,6 +1,6 @@
|
|||
SHELL := /bin/bash
|
||||
|
||||
ARCH := x86
|
||||
ARCH := i386
|
||||
OS := bluesnow
|
||||
TARGET ?= $(ARCH)-$(OS)
|
||||
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ else
|
|||
PORTG := 4344
|
||||
endif
|
||||
|
||||
QEMU := qemu-system-i386\
|
||||
QEMU := qemu-system-$(ARCH)\
|
||||
-gdb tcp::$(PORTG)\
|
||||
-S\
|
||||
-enable-kvm\
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
// we only support a single architecture at the moment
|
||||
// more specifically IA-32 (aka i386) but we name it x86 here.
|
||||
pub mod x86;
|
||||
// we called it i386 but we generally support all 32bit
|
||||
// intel architectures (IA-32) such as i[3456]86
|
||||
pub mod i386;
|
||||
|
|
|
|||
Loading…
Reference in a new issue