Displaying 20 results from an estimated 31 matches for "parisc64".
Did you mean:
parisc
2006 Jul 24
1
klibc parisc64
I hacked out a rough first implementation of parisc64 for klibc
last month, and only just got around to testing it now.
The good news, it compiled fine on the first shot. The bad news,
it failed to link usr/klibc/libc.so, and I'm not clueful enough
to know why.
hppa64-linux-gnu-ld -Ttext 0x40001000 -o usr/klibc/libc.so --start-group
[...]
usr/k...
2016 Nov 11
1
[PATCH] Add hppa, hppa64, ppc64el architectures
...rpc64" -> ["ppc"; "powerpc"; "powerpc64"]
| "sparc" | "sparc64" -> ["sparc"; "sparc64"]
| "amd64" | "x86_64" -> ["amd64"; "x86_64"]
+ | "parisc" | "parisc64" -> ["hppa"; "hppa64"]
+ | "ppc64el" -> ["powerpc64le"]
| _ when host_cpu.[0] = 'i' && host_cpu.[2] = '8' && host_cpu.[3] = '6' -> ["?86"]
| _ when String.length host_cpu >= 5 &am...
2005 Jun 17
2
Patch to support parisc
This patch allows klibc to build on parisc64 platforms.
$ diff -u MCONFIG.old MCONFIG
--- MCONFIG.old 2005-06-18 01:16:12.000000000 +0000
+++ MCONFIG 2005-06-18 01:18:51.000000000 +0000
@@ -33,7 +33,7 @@
KLIBCVER = -D__KLIBC__=$(shell cut -d. -f1 < $(SRCROOT)/version) \
-D__KLIBC_MINOR__=$(shell cut -d. -f2 < $(SRCROOT)...
2006 Jan 03
3
fix build failure on 64-bit parisc
On PA-RISC machines running in 64-bit mode, uname -m returns `parisc64'
instead of `parisc.' Thus, we must sed this to match like a few
other platforms.
From: Kyle McMartin <kyle@parisc-linux.org>
Signed-off-by: Kyle McMartin <kyle@parisc-linux.org>
diff --git a/Makefile b/Makefile
index 2b057b8..16a026d 100644
--- a/Makefile
+++ b/Makefile
@@ -1...
2016 Apr 03
3
PA-RISC (hppa) video cards init failure loading the device driver kernel module
...ns, now I have an - almost - perfectly working
hp c8000 workstation.
Mission accomplished? Not exactly: despite a lot of efforts, the video
card section is still not fully operative. Let me resume the
situation.
I'm using a c8000 with two PA-8800 and Debian 8.0, kernel:
Linux version 4.4.0-1-parisc64-smp (debian-kernel at lists.debian.org)
(gcc version 4.9.3 (GCC) ) #1 SMP Debian 4.4.6-1 (2016-03-17)
I have two very different AGP video cards (ATI FireGL T2 and NVIDIA
QUADRO MXR) that have the same issue, despite the two complety
different drivers ("radeon" and "nouveau"). T...
2013 Dec 03
0
[klibc:master] ppc64: Add ppc64le support
...-git a/Makefile b/Makefile
index a7da622..dc10fc5 100644
--- a/Makefile
+++ b/Makefile
@@ -30,8 +30,11 @@ export OBJDUMP := $(KLIBCROSS)objdump
NOSTDINC_FLAGS := -nostdlib -nostdinc -isystem $(shell $(CC) -print-file-name=include)
-ARCH := $(shell uname -m | sed -e s/i.86/i386/ -e s/parisc64/parisc/ -e s/sun4u/sparc64/ -e s/arm.*/arm/ -e s/sa110/arm/ \
- -e s/aarch64.*/arm64/ -e s/sh.*/sh/)
+ARCH := $(shell uname -m | sed -e s/i.86/i386/ \
+ -e s/parisc64/parisc/ -e s/sun4u/sparc64/ \
+ -e s/arm.*/arm/ -e s/sa110/arm/ \
+ -e s/aarch64.*/arm64/ -e s/sh.*/sh/ \
+ -e s...
2008 Jun 16
0
latest fixes
...--git a/Makefile b/Makefile
index b507668..136d4e8 100644
--- a/Makefile
+++ b/Makefile
@@ -24,7 +24,7 @@ export OBJDUMP := $(KLIBCROSS)objdump
NOSTDINC_FLAGS := -nostdlib -nostdinc -isystem $(shell $(CC) -print-file-name=include)
-ARCH := $(shell uname -m | sed -e s/i.86/i386/ -e s/parisc64/parisc/ -e s/sun4u/sparc64/ -e s/arm.*/arm/ -e s/sa110/arm/)
+ARCH := $(shell uname -m | sed -e s/i.86/i386/ -e s/parisc64/parisc/ -e s/sun4u/sparc64/ -e s/arm.*/arm/ -e s/sa110/arm/ -e s/sh4/sh/)
export KLIBCARCH ?= $(ARCH)
export KLIBCARCHDIR := $(shell echo $(KLIBCARCH) | sed -e s/s...
2013 Dec 03
2
[PATCH 1/2] ppc64: Add ppc64le support
...-git a/Makefile b/Makefile
index a7da622..dc10fc5 100644
--- a/Makefile
+++ b/Makefile
@@ -30,8 +30,11 @@ export OBJDUMP := $(KLIBCROSS)objdump
NOSTDINC_FLAGS := -nostdlib -nostdinc -isystem $(shell $(CC) -print-file-name=include)
-ARCH := $(shell uname -m | sed -e s/i.86/i386/ -e s/parisc64/parisc/ -e s/sun4u/sparc64/ -e s/arm.*/arm/ -e s/sa110/arm/ \
- -e s/aarch64.*/arm64/ -e s/sh.*/sh/)
+ARCH := $(shell uname -m | sed -e s/i.86/i386/ \
+ -e s/parisc64/parisc/ -e s/sun4u/sparc64/ \
+ -e s/arm.*/arm/ -e s/sa110/arm/ \
+ -e s/aarch64.*/arm64/ -e s/sh.*/sh/ \
+ -e s...
2016 Apr 04
1
PA-RISC (hppa) video cards init failure loading the device driver kernel module
...>>
>> Mission accomplished? Not exactly: despite a lot of efforts, the video
>> card section is still not fully operative. Let me resume the
>> situation.
>>
>> I'm using a c8000 with two PA-8800 and Debian 8.0, kernel:
>>
>> Linux version 4.4.0-1-parisc64-smp (debian-kernel at lists.debian.org)
>> (gcc version 4.9.3 (GCC) ) #1 SMP Debian 4.4.6-1 (2016-03-17)
>>
>> I have two very different AGP video cards (ATI FireGL T2 and NVIDIA
>> QUADRO MXR) that have the same issue, despite the two complety
>> different drivers (&q...
2016 Jan 06
0
[klibc:master] Update README.klibc
...ARCH to the
appropriate architecture, and set CROSS_COMPILE to your toolchain
@@ -45,7 +48,7 @@ b) If you're cross-compiling, you need to set KLIBCARCH to the
m32r: Untested
m68k: Working
mips: Working
- mips64: Not yet ported
+ mips64: Working
parisc: Untested
parisc64: Not yet ported
ppc: Working
2019 Feb 01
0
[klibc:master] REAMDE.klibc: Update architecture status
...t yet ported
arm64: Working
avr32: Not yet ported
cris: Working
h8300: Not yet ported
i386: Working
- ia64: Working static, shared untested
+ ia64: Mostly working
m68k: Working
mips: Working
mips64: Working
- parisc: Untested
+ parisc: Working
parisc64: Not yet ported
ppc: Working
ppc64: Working
s390: Working
s390x: Working
- sh: Runtime breakage
+ sh: Working
sh64: Not yet ported
sparc: Working
sparc64: Working
- v850: Not yet ported
x86-64: Working
xtensa: Not yet ported
2020 Aug 29
0
[klibc:master] README.klibc: Refresh architecture list
...ng is the last known status of various architectures:
arm-thumb: Working
arm: Working
arm64: Working
- avr32: Not yet ported
h8300: Not yet ported
i386: Working
ia64: Working
@@ -119,10 +118,10 @@ The following is the last known status of various architectures:
parisc64: Not yet ported
ppc: Working
ppc64: Working
+ riscv64: Working
s390: Working
s390x: Working
sh: Working
- sh64: Not yet ported
sparc: Working
sparc64: Working
x86-64: Working
2019 Apr 12
0
[supermin PATCH 5/5] utils: remove unused 'compare_architecture' function
...ring_prefix "armv5" a -> 32
- | a when string_prefix "armv6" a -> 32
- | a when string_prefix "armv7" a -> 32
- | a when string_prefix "armv8" a -> 64
- | "hppa" | "parisc" -> 32
- | "hppa64" | "parisc64" -> 64
- | "ppc" | "ppc32" -> 32
- | a when string_prefix "ppc64" a -> 64
- | "sparc" | "sparc32" -> 32
- | "sparc64" -> 64
- | "ia64" -> 64
- | "s390" -> 32
- | "s390...
2012 May 25
0
[klibc:master] README update arch status
...orted
@@ -44,19 +44,18 @@ b) If you're cross-compiling, you need to set KLIBCARCH to the
ia64: Working static, shared untested
m32r: Untested
m68k: Working
- m68knommu: Not yet ported
mips: Working
mips64: Not yet ported
- parisc: Working
+ parisc: Untested
parisc64: Not yet ported
ppc: Working
ppc64: Working
s390: Working
s390x: Working
- sh: Untested
+ sh: Runtime breakage
sh64: Not yet ported
sparc: Working
- sparc64: Untested
+ sparc64: Working
v850: Not yet ported
x86-64: Working
xtensa: Not yet...
2016 Apr 04
0
PA-RISC (hppa) video cards init failure loading the device driver kernel module
...king
> hp c8000 workstation.
>
> Mission accomplished? Not exactly: despite a lot of efforts, the video
> card section is still not fully operative. Let me resume the
> situation.
>
> I'm using a c8000 with two PA-8800 and Debian 8.0, kernel:
>
> Linux version 4.4.0-1-parisc64-smp (debian-kernel at lists.debian.org)
> (gcc version 4.9.3 (GCC) ) #1 SMP Debian 4.4.6-1 (2016-03-17)
>
> I have two very different AGP video cards (ATI FireGL T2 and NVIDIA
> QUADRO MXR) that have the same issue, despite the two complety
> different drivers ("radeon" and...
2016 Apr 04
0
[Radeon] PA-RISC (hppa) video cards init failure loading the device driver kernel module
...n accomplished? Not exactly: despite a lot of efforts, the video
>>> card section is still not fully operative. Let me resume the
>>> situation.
>>>
>>> I'm using a c8000 with two PA-8800 and Debian 8.0, kernel:
>>>
>>> Linux version 4.4.0-1-parisc64-smp (debian-kernel at lists.debian.org)
>>> (gcc version 4.9.3 (GCC) ) #1 SMP Debian 4.4.6-1 (2016-03-17)
>>>
>>> I have two very different AGP video cards (ATI FireGL T2 and NVIDIA
>>> QUADRO MXR) that have the same issue, despite the two complety
>>> d...
2013 Nov 12
0
[klibc:master] arm64: Add arm64 support
...--git a/Makefile b/Makefile
index 0a3ee69..a7da622 100644
--- a/Makefile
+++ b/Makefile
@@ -30,7 +30,8 @@ export OBJDUMP := $(KLIBCROSS)objdump
NOSTDINC_FLAGS := -nostdlib -nostdinc -isystem $(shell $(CC) -print-file-name=include)
-ARCH := $(shell uname -m | sed -e s/i.86/i386/ -e s/parisc64/parisc/ -e s/sun4u/sparc64/ -e s/arm.*/arm/ -e s/sa110/arm/ -e s/sh.*/sh/)
+ARCH := $(shell uname -m | sed -e s/i.86/i386/ -e s/parisc64/parisc/ -e s/sun4u/sparc64/ -e s/arm.*/arm/ -e s/sa110/arm/ \
+ -e s/aarch64.*/arm64/ -e s/sh.*/sh/)
export KLIBCARCH ?= $(ARCH)
export KLIBCARCHDI...
2013 Nov 08
0
[PATCH 3/3] arm64: Introduce arm64 support
...--git a/Makefile b/Makefile
index 0a3ee69..a7da622 100644
--- a/Makefile
+++ b/Makefile
@@ -30,7 +30,8 @@ export OBJDUMP := $(KLIBCROSS)objdump
NOSTDINC_FLAGS := -nostdlib -nostdinc -isystem $(shell $(CC) -print-file-name=include)
-ARCH := $(shell uname -m | sed -e s/i.86/i386/ -e s/parisc64/parisc/ -e s/sun4u/sparc64/ -e s/arm.*/arm/ -e s/sa110/arm/ -e s/sh.*/sh/)
+ARCH := $(shell uname -m | sed -e s/i.86/i386/ -e s/parisc64/parisc/ -e s/sun4u/sparc64/ -e s/arm.*/arm/ -e s/sa110/arm/ \
+ -e s/aarch64.*/arm64/ -e s/sh.*/sh/)
export KLIBCARCH ?= $(ARCH)
export KLIBCARCHDI...
2023 Aug 01
0
[linux-next:master] BUILD REGRESSION a734662572708cf062e974f659ae50c24fc1ad17
...dconfig-r035-20230731 gcc
nios2 randconfig-r036-20230731 gcc
parisc allyesconfig gcc
parisc defconfig gcc
parisc randconfig-r006-20230731 gcc
parisc randconfig-r031-20230731 gcc
parisc64 defconfig gcc
powerpc allmodconfig gcc
powerpc allnoconfig gcc
riscv allmodconfig gcc
riscv allnoconfig gcc
riscv allye...
2024 Mar 07
1
[linux-next:master] BUILD REGRESSION 1843e16d2df9d98427ef8045589571749d627cf7
...drivers-gpu-drm-nouveau-nvkm-subdev-gsp-r535.c:warning:Function-parameter-or-struct-member-gsp-not-described-in-nvkm_gsp_radix3_sg
|-- parisc-randconfig-002-20240307
| `-- fs-ubifs-journal.c:warning:expecting-prototype-for-wake_up_reservation().-Prototype-was-for-add_or_start_queue()-instead
|-- parisc64-defconfig
| `-- drivers-gpu-drm-nouveau-nvkm-subdev-gsp-r535.c:warning:Function-parameter-or-struct-member-gsp-not-described-in-nvkm_gsp_radix3_sg
|-- powerpc-allmodconfig
| |-- drivers-gpu-drm-nouveau-nvkm-subdev-gsp-r535.c:warning:Function-parameter-or-struct-member-gsp-not-described-in-nvkm_...