Search found 118 matches

by seawright
Fri Mar 31, 2023 10:04 am
Forum: Linux
Topic: Kernel 6.0-> breaks OSS
Replies: 5
Views: 2061

Re: Kernel 6.0-> breaks OSS

Nexus wrote:Are you still sending patches to Hannu? Looks like it's almost time for an annual update.

Sent 3 Patches last month (not including this problem).
Reminder sent last week with copy to Dev.
No reply to either.
by seawright
Mon Mar 20, 2023 9:25 pm
Forum: Linux
Topic: Kernel 6.0-> breaks OSS
Replies: 5
Views: 2061

Re: Kernel 6.0-> breaks OSS

Try replacing virt_to_bus function in osscore.c with virt_to_phys.
by seawright
Sun Feb 26, 2023 8:28 pm
Forum: Linux
Topic: Linux kernel 5.18 breaks OSS
Replies: 3
Views: 1556

Re: Linux kernel 5.18 breaks OSS

It won't solve the year 2038 problem but casting ktime_get_real_seconds to unsigned long will stop the compiler complaining.

Code: Select all

return (unsigned long) ktime_get_real_seconds;
by seawright
Tue Feb 07, 2023 11:07 am
Forum: Linux
Topic: Kernel 6.0-> breaks OSS
Replies: 5
Views: 2061

Re: Kernel 6.0-> breaks OSS

It appears that the wrapper function oss_virt_to_bus is not used therefore it could be safely removed and all references to it (for Linux) commented out. rgrep oss_virt_to_bus opensound-git opensound-git/setup/Linux/oss/build/osscore.c:oss_virt_to_bus (void *addr) opensound-git/setup/Linux/oss/build...
by seawright
Thu Dec 29, 2022 12:25 pm
Forum: Linux
Topic: Linux kernel 5.18 breaks OSS
Replies: 3
Views: 1556

Re: Linux kernel 5.18 breaks OSS

If only it was that simple. It is all part of the year 2038 problem (see https://en.wikipedia.org/wiki/Year_2038_problem ). Unlike the millennium bug where software developers were busy in 1999 racing to find a fix they are trying to tackle this bug early. This is causing all sorts of problems as th...
by seawright
Wed Dec 28, 2022 12:07 am
Forum: General Discussion
Topic: Is anyone still using the Open Sound System?
Replies: 3
Views: 107822

Re: Is anyone still using the Open Sound System?

As you say the Debian repo. is not maintained and therefore broken. The latest sources are available from SourceForge (see link below) but other than bug fixes nothing much has been added for some years, leaving newer sound cards unsupported. https://sourceforge.net/p/opensound/git/ci/master/tree/ M...
by seawright
Tue Dec 27, 2022 4:24 pm
Forum: Linux
Topic: Linux kernel 5.18 breaks OSS
Replies: 3
Views: 1556

Linux kernel 5.18 breaks OSS

Kernel v15.18 and later breaks the osscore module which won't install due to a macro called "memmove" being defined in <linux/fortify-string.h>. When the installation script tries to build the osscore module GCCs pre-processor replaces the function name memmove in osscore.c with the expand...
by seawright
Mon Dec 26, 2022 4:18 pm
Forum: General Discussion
Topic: Is anyone still using the Open Sound System?
Replies: 3
Views: 107822

Is anyone still using the Open Sound System?

Is anyone still using the Open Sound System provided by 4Front Technologies or are there past users who would like to use it
but are prevented from doing so due to problems with installation or incompatibilities with other software packages?
by seawright
Fri Jan 21, 2022 6:01 pm
Forum: Linux
Topic: [SOLVED] Kernel version 5.14 breaks vmix
Replies: 2
Views: 6282

Re: Kernel version 5.14 breaks vmix

Hi Nexus, I think it may just be a reporting error and floating point vmix works just fine. Could you compile the drivers without any configuration options and (as root) apply the following patch: --- /usr/lib/oss/build/osscore_c.bak 2022-01-21 17:36:44.967159829 +0000 +++ /usr/lib/oss/build/osscore...
by seawright
Fri Oct 16, 2020 7:32 pm
Forum: Linux
Topic: Issus with OSS and jack1 on Ubuntu 20.40
Replies: 6
Views: 23721

Re: Issus with OSS and jack1 on Ubuntu 20.40

From dmesg.txt, RIP: 0010:_ZN15CHalSampleClock3SetEih+0x1cb/0x1bf0 [lynxtwo] shows the content of the instruction pointer when the fault occurred. This points to the next instruction to be obeyed and as it is not at the entry point of function _ZN15CHalSampleClock3SetEih I would assume that the faul...
by seawright
Fri Aug 21, 2020 7:31 pm
Forum: Linux
Topic: OSS-v4.2-build2019 fail to compile on Linux >5.4
Replies: 1
Views: 10640

OSS-v4.2-build2019 fail to compile on Linux >5.4

Linux modules for OSS-v4.2-build2019 fails to compile on Linux version 5.4 and later. Anyone requiring OSS-v4.2 for recent Linux kernels should compile from source available from the Open Sound System git repository at: https://sourceforge.net/p/opensound/git/ci/master/tree/ which was last updated o...
by seawright
Fri Feb 14, 2020 7:32 pm
Forum: Linux
Topic: osscore: Unknown symbol _GLOBAL_OFFSET_TABLE
Replies: 2
Views: 16082

Re: osscore: Unknown symbol _GLOBAL_OFFSET_TABLE

Try patching "setup/srcconf.c" with the following patch before running configure. --- setup/srcconf_c.bak 2020-02-14 19:08:19.874268725 +0000 +++ setup/srcconf.c 2020-02-14 19:09:41.323670459 +0000 @@ -952,7 +952,7 @@ #if defined(__SCO_VERSION__) fprintf (f, "CFLAGS=-O -D_KERNEL -D_DD...
by seawright
Fri Dec 20, 2019 11:53 am
Forum: Linux
Topic: ossv4 2019 failed to build
Replies: 2
Views: 16545

Re: ossv4 2019 failed to build

From the makedev man page: MAKEDEV(3) Linux Programmer's Manual MAKEDEV(3) NAME makedev, major, minor - manage a device number SYNOPSIS #include <sys/sysmacros.h> dev_t makedev(unsigned int maj, unsigned int min); unsigned int major(dev_t dev); unsigned int minor(dev_t dev); Add "#include <sys/...
by seawright
Tue Oct 29, 2019 9:23 pm
Forum: Linux
Topic: Does not compile with kernel 5.2.1
Replies: 4
Views: 24930

Re: Does not compile with kernel 5.2.1

Have amended patch to remove a stale symlink which could exist in build directory under fault conditions. Don't know why you had difficulty applying patch to source tree but two possibilities: ⋅ Wrong value in patch -p... option. Only -p3 in oss directory. ⋅ Windows line endings ...
by seawright
Thu Oct 10, 2019 9:01 pm
Forum: Linux
Topic: Does not compile with kernel 5.2.1
Replies: 4
Views: 24930

Re: Does not compile with kernel 5.2.1

Just had the same problem. This patch should fix it: --- setup/Linux/oss/build/Makefile.osscore +++ setup/Linux/oss/build/Makefile.osscore @@ -5,6 +5,7 @@ EXTRA_CFLAGS += -I${OSSLIBDIR}/include/internals -I${OSSLIBDIR}/include/sys ifneq ($(KERNELRELEASE),) obj-m := osscore.o + osscore-objs := osscor...

Go to advanced search