search for: superh

Displaying 20 results from an estimated 34 matches for "superh".

Did you mean: super
2008 Oct 16
1
Configure error when compiling on "sh" architecture
Amusingly enough, the SuperH (or sh for short) architecture isn't one of the many I have handy, but someone seems to be porting Fedora to that arch. They filed a bug against R, which isn't really an R bug, but is more an inherited bug from autoconf. Specifically, the R configure script invokes gcc(gfortran) which then...
2001 Oct 18
0
Security Update: [CSSA-2001-036.0] Linux - Several Linux Kernel Security Problems
...rce-mips-2.4.2-13S.i386.rpm 6fb7efb46e508eeb0026329c5b5ff3f4 linux-source-ppc-2.4.2-13S.i386.rpm 2c2be2906e6975ec275e358d7965c08b linux-source-s390-2.4.2-13S.i386.rpm 270dec86a98cfb100d5f7d03041952c7 linux-source-sparc-2.4.2-13S.i386.rpm 7c649a68cb47f833c49ca8575a53c5b8 linux-source-superH-2.4.2-13S.i386.rpm d78d52a8b036c023c5182a26d50a15aa linux-2.4.2-13S.src.rpm 7.3 Installing Fixed Packages Upgrade the affected packages with the following commands: /sbin/modprobe loop rpm -Fvh linux-kernel-binary-2.4.2-13S.i386.rpm \ linux-kernel-i...
2001 Nov 06
0
Security Update: [CSSA-2001-38.0] Linux - syncookies firewall breaking problem
...4S.i386.rpm eb531f7e844276dadcfb64a61e14d91b linux-source-ppc-2.4.2-14S.i386.rpm bdbb2c789f16563881f1bb24384a1e13 linux-source-s390-2.4.2-14S.i386.rpm afab346de67d5298b680d9f3f585df85 linux-source-sparc-2.4.2-14S.i386.rpm 4365699de967a365b09f92f683447b90 linux-source-superH-2.4.2-14S.i386.rpm 38226719588775988ffdd5db0adacb10 linux-2.4.2-14S.src.rpm 7.3 Installing Fixed Packages Upgrade the affected packages with the following commands: /sbin/modprobe loop rpm -Fvh linux-kernel-binary-2.4.2-14S.i386.rpm \ linux-kern...
1997 Aug 15
2
R-beta: Polynomials in lm/glm
R users, I was a bit surprised to find that when I attempted to add a polynomial term to a linear model using either lm or glm as could be done in S resulted in a fit without that term included and without warning(!!), e.g. > lm(response ~ x + x^2, data). As far as I can gather, there is no poly() yet in R, and if lm/glm do not allow functions of variables as their formula arguements, is
2003 Jan 18
1
IIS, ASP, and File Change Notification
...rator = . winbind uid = 10000-20000 winbind gid = 10000-20000 winbind enum users = yes winbind enum groups = yes winbind use default domain = true template homedir = /home/%U template shell = /sbin/restricted-shell admin users = HLS_BERKMAN.Administrator HLS_BERKMAN.superhal HLS_BERKMAN.superjesse #valid users = "HLS_BERKMAN.Domain Users" create mask = 0640 directory mask = 0750 oplocks = no kernel oplocks = no csc policy = disable locking = yes level2 oplocks = no change notify timeout = 5 log level = 0 #=====...
2012 May 18
1
[sh4] klibc SIGILL
Hi sh4 porters, I?ve just fixed a regression of klibc to build from source on sh4 using the sumotsu.debian.net porterbox (thanks for making one available) and found a problem with your archi- tecture: all binaries built with klibc (shared and static) get a SIGILL (illegal instruction). I suspect that different CFLAGS are needed. Please, someone, have a look at it; a release of klibc 2.0 upstream
2007 Jan 08
1
libogg subtitle request
...ome languages , a subtitle support in Ogg container can make these videos more widely spread , because you would can insert English subtitles for example. Please consider this request in the next review of libogg. _________________________________________________________________ Grandes ?xitos, superh?roes, imitaciones, cine y TV... http://es.msn.kiwee.com/ Lo mejor para tu m?vil.
2020 Jan 08
1
[RFT 00/13] iomap: Constify ioreadX() iomem argument
...o a plain pointer > dereference (probably none of the ones in question here). > > In case of readl/writel, this is what we do in asm-generic: > > static inline u32 __raw_readl(const volatile void __iomem *addr) > { > return *(const volatile u32 __force *)addr; > } SuperH is another example: 1. ioread8_rep(void __iomem *addr, void *dst, unsigned long count) calls mmio_insb() 2. static inline void mmio_insb(void __iomem *addr, u8 *dst, int count) calls __raw_readb() 3. #define __raw_readb(a) (__chk_io_ptr(a), *(volatile u8 __force *)(a)) Even if in...
2010 Apr 22
0
(fwd) Bug#578076: sh4: syscalls do not work
...g> ----- Date: Fri, 16 Apr 2010 18:17:58 +0200 From: Aurelien Jarno <aurel32 at debian.org> To: Debian Bug Tracking System <submit at bugs.debian.org> Subject: Bug#578076: sh4: syscalls do not work Package: klibc Version: 1.5.17-4 Severity: important Tags: patch User: debian-sh4 at superh.org Usertags: sh4 Using the patch from bug #574834 klibc now builds, but does not work. It assumes that the kernel returns the result of the syscalls in register r3, while it behaves like a normal call, with the results in register r0. Also the pipe syscall needs a special handling as on some ot...
2006 Jun 26
0
[klibc 34/43] sh support for klibc
...r0 + nop + + .align 2 +1: .long __libc_init + + .size _start,.-_start diff --git a/usr/klibc/arch/sh/setjmp.S b/usr/klibc/arch/sh/setjmp.S new file mode 100644 index 0000000..2552358 --- /dev/null +++ b/usr/klibc/arch/sh/setjmp.S @@ -0,0 +1,64 @@ +# +# arch/sh/setjmp.S +# +# setjmp/longjmp for the SuperH architecture +# + +# +# The jmp_buf is assumed to contain the following, in order: +# +# r8 +# r9 +# r10 +# r11 +# r12 +# r13 +# r14 +# r15 +# pr +# + + .text + .align 2 + + .globl setjmp + .type setjmp, #function + +setjmp: + add #(9*4), r4 + sts.l pr, @-r4 + mov.l r15, @-r4 + mov.l r14,...
2007 Jun 26
2
RFC: multiple address spaces for one process
....o Index: linux-2.6/mm/Kconfig =================================================================== --- linux-2.6.orig/mm/Kconfig 2007-06-07 19:13:02.000000000 -0400 +++ linux-2.6/mm/Kconfig 2007-06-25 13:50:32.000000000 -0400 @@ -168,3 +168,10 @@ depends on QUICKLIST default "2" if (SUPERH && !SUPERH64) default "1" + +config VMMHOST + bool "Multiple address spaces for userspace virtualisation acceleration" + default false + help + This option allows a process to have more than one address space, + and enables the new_as and switch_as system calls. -...
2007 Jun 26
2
RFC: multiple address spaces for one process
....o Index: linux-2.6/mm/Kconfig =================================================================== --- linux-2.6.orig/mm/Kconfig 2007-06-07 19:13:02.000000000 -0400 +++ linux-2.6/mm/Kconfig 2007-06-25 13:50:32.000000000 -0400 @@ -168,3 +168,10 @@ depends on QUICKLIST default "2" if (SUPERH && !SUPERH64) default "1" + +config VMMHOST + bool "Multiple address spaces for userspace virtualisation acceleration" + default false + help + This option allows a process to have more than one address space, + and enables the new_as and switch_as system calls. -...
2020 Jan 08
4
[RFT 00/13] iomap: Constify ioreadX() iomem argument
Le 08/01/2020 ? 09:18, Krzysztof Kozlowski a ?crit?: > On Wed, 8 Jan 2020 at 09:13, Geert Uytterhoeven <geert at linux-m68k.org> wrote: >> >> Hi Krzysztof, >> >> On Wed, Jan 8, 2020 at 9:07 AM Geert Uytterhoeven <geert at linux-m68k.org> wrote: >>> On Tue, Jan 7, 2020 at 5:53 PM Krzysztof Kozlowski <krzk at kernel.org> wrote: >>>>
2020 May 06
0
Fwd: GeForce(R) GT 710 1GB PCIE x 1 on arm64
...1.130714] io scheduler mq-deadline registered [ 1.130732] io scheduler kyber registered [ 1.134117] tegra-xusb-padctl 3520000.padctl: failed to read calibration fuse: -517 [ 1.142583] EINJ: ACPI disabled. [ 1.155545] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled [ 1.157706] SuperH (H)SCI(F) driver initialized [ 1.158125] msm_serial: driver initialized [ 1.159812] arm-smmu 12000000.iommu: probing hardware configuration... [ 1.159841] arm-smmu 12000000.iommu: SMMUv2 with: [ 1.159863] arm-smmu 12000000.iommu: stage 1 translation [ 1.159883] arm-smmu 12000...
2007 Aug 10
1
[Lguest] error rebooting lguest
...# # USB devices # # CONFIG_SND_USB_AUDIO is not set # CONFIG_SND_USB_USX2Y is not set # CONFIG_SND_USB_CAIAQ is not set # # PCMCIA devices # # CONFIG_SND_VXPOCKET is not set # CONFIG_SND_PDAUDIOCF is not set # # System on Chip audio support # # CONFIG_SND_SOC is not set # # SoC Audio support for SuperH # # # Open Sound System # # CONFIG_SOUND_PRIME is not set CONFIG_AC97_BUS=m CONFIG_HID_SUPPORT=y CONFIG_HID=y # CONFIG_HID_DEBUG is not set # # USB Input Devices # CONFIG_USB_HID=m # CONFIG_USB_HIDINPUT_POWERBOOK is not set # CONFIG_HID_FF is not set # CONFIG_USB_HIDDEV is not set # # USB HID Bo...
2007 Aug 10
1
[Lguest] error rebooting lguest
...# # USB devices # # CONFIG_SND_USB_AUDIO is not set # CONFIG_SND_USB_USX2Y is not set # CONFIG_SND_USB_CAIAQ is not set # # PCMCIA devices # # CONFIG_SND_VXPOCKET is not set # CONFIG_SND_PDAUDIOCF is not set # # System on Chip audio support # # CONFIG_SND_SOC is not set # # SoC Audio support for SuperH # # # Open Sound System # # CONFIG_SOUND_PRIME is not set CONFIG_AC97_BUS=m CONFIG_HID_SUPPORT=y CONFIG_HID=y # CONFIG_HID_DEBUG is not set # # USB Input Devices # CONFIG_USB_HID=m # CONFIG_USB_HIDINPUT_POWERBOOK is not set # CONFIG_HID_FF is not set # CONFIG_USB_HIDDEV is not set # # USB HID Bo...
2007 Jul 24
1
lguest doesn't work on kernel 2.6.23-rc1
...D_VIA82XX_MODEM is not set # CONFIG_SND_VX222 is not set # CONFIG_SND_YMFPCI is not set # # USB devices # # CONFIG_SND_USB_AUDIO is not set # CONFIG_SND_USB_USX2Y is not set # CONFIG_SND_USB_CAIAQ is not set # # System on Chip audio support # # CONFIG_SND_SOC is not set # # SoC Audio support for SuperH # # # Open Sound System # # CONFIG_SOUND_PRIME is not set CONFIG_HID_SUPPORT=3Dy CONFIG_HID=3Dy # CONFIG_HID_DEBUG is not set # # USB Input Devices # CONFIG_USB_HID=3Dy # CONFIG_USB_HIDINPUT_POWERBOOK is not set CONFIG_HID_FF=3Dy CONFIG_HID_PID=3Dy CONFIG_LOGITECH_FF=3Dy # CONFIG_PANTHERLORD_FF i...
2007 Jul 24
1
lguest doesn't work on kernel 2.6.23-rc1
...D_VIA82XX_MODEM is not set # CONFIG_SND_VX222 is not set # CONFIG_SND_YMFPCI is not set # # USB devices # # CONFIG_SND_USB_AUDIO is not set # CONFIG_SND_USB_USX2Y is not set # CONFIG_SND_USB_CAIAQ is not set # # System on Chip audio support # # CONFIG_SND_SOC is not set # # SoC Audio support for SuperH # # # Open Sound System # # CONFIG_SOUND_PRIME is not set CONFIG_HID_SUPPORT=3Dy CONFIG_HID=3Dy # CONFIG_HID_DEBUG is not set # # USB Input Devices # CONFIG_USB_HID=3Dy # CONFIG_USB_HIDINPUT_POWERBOOK is not set CONFIG_HID_FF=3Dy CONFIG_HID_PID=3Dy CONFIG_LOGITECH_FF=3Dy # CONFIG_PANTHERLORD_FF i...
2012 Dec 12
43
[PATCH 00/37] [RFC] revamped modeset locking
Hi all, First thing first: It works, I now no longer have a few dropped frames every 10s on my testbox here with the pageflip i-g-t tests. Random notes: - New design has per-crtc locks to protect the crtc input-side (pageflip, cursor) for r/w and the output state of the crtc (mode, dpms) as read-only. It also required completely revamped fb lifecycle management, those are now refcounted
2007 Nov 26
0
[SPAM] Re: 2.6.24-rc3-mm1 -- arch/x86/xen/enlighten.c:591: error: ‘TLB_FLUSH_ALL’ undeclared (first use in this function)
...E is not set > > # > # USB devices > # > # CONFIG_SND_USB_AUDIO is not set > # CONFIG_SND_USB_USX2Y is not set > # CONFIG_SND_USB_CAIAQ is not set > > # > # System on Chip audio support > # > # CONFIG_SND_SOC is not set > > # > # SoC Audio support for SuperH > # > > # > # Open Sound System > # > # CONFIG_SOUND_PRIME is not set > CONFIG_AC97_BUS=m > CONFIG_HID_SUPPORT=y > CONFIG_HID=m > # CONFIG_HID_DEBUG is not set > # CONFIG_HIDRAW is not set > > # > # USB Input Devices > # > CONFIG_USB_HID=m > CONF...