changed name x86 to i386

This commit is contained in:
Jack Halford 2018-05-17 16:48:47 +02:00
parent 91d6d126e8
commit 02d0ddaf02
24 changed files with 5 additions and 4 deletions

View file

@ -1,6 +1,6 @@
SHELL := /bin/bash SHELL := /bin/bash
ARCH := x86 ARCH := i386
OS := bluesnow OS := bluesnow
TARGET ?= $(ARCH)-$(OS) TARGET ?= $(ARCH)-$(OS)

View file

@ -6,7 +6,7 @@ else
PORTG := 4344 PORTG := 4344
endif endif
QEMU := qemu-system-i386\ QEMU := qemu-system-$(ARCH)\
-gdb tcp::$(PORTG)\ -gdb tcp::$(PORTG)\
-S\ -S\
-enable-kvm\ -enable-kvm\

View file

@ -1,3 +1,4 @@
// we only support a single architecture at the moment // we only support a single architecture at the moment
// more specifically IA-32 (aka i386) but we name it x86 here. // we called it i386 but we generally support all 32bit
pub mod x86; // intel architectures (IA-32) such as i[3456]86
pub mod i386;