Answering SCO Bit by Bit - more a.out.h and errno.h and elf.h, this time in OpenLinux 1.3

 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements UNIX and Linux RSS News Answering SCO Bit by Bit - more a.out.h and errno.h and elf.h, this time in OpenLinux 1.3
# 1  
Old 12-19-2009
Answering SCO Bit by Bit - more a.out.h and errno.h and elf.h, this time in OpenLinux 1.3

Groklaw member valerio checked the contents of Caldera Systems OpenLinux 1.3, a CD from 1998, and you'll never guess what he found. Yes, friends, the CD contains, in the archive file col/install/RPMS/linux-kernel-include-2.0.35-1.i386.rpm, two files SCO claims are infringing if placed in Linux:
/include/linux/a.out.h
and
/ include/asm-i386/errno.h
This is the second time we've caught SCO/Caldera distributing these two files in a Caldera distribution under the GPL, despite its claim that it never authorized them to be in Linux or under the GPL. The first was copyrighted 2000, two years before this instance valerio found. What? Inadvertent twice? As you will see, they put the files there themselves. In Linux. Under the GPL. And now they want to sue people using Linux because they are in there.

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

4 More Discussions You Might Find Interesting

1. Windows & DOS: Issues & Discussions

Which version of Windows Vista to install with a product key? 32-bit or 64-bit?

Hello everyone. I bought a dell laptop (XPS M1330) online which came without a hard drive. There is a Windows Vista Ultimate OEMAct sticker with product key at the bottom case. I checked dell website (here) for this model and it says this model supports both 32 and 64-bit version of Windows... (4 Replies)
Discussion started by: milhan
4 Replies

2. Shell Programming and Scripting

How to handle 64 bit arithmetic operation at 32 bit compiled perl interpreter?H

Hi, Here is the issue. From the program snippet I have Base: 0x1800000000, Size: 0x3FFE7FFFFFFFF which are of 40 and 56 bits. SO I used use bignum to do the math but summing them up I always failed having correct result. perl interpreter info, perl, v5.8.8 built for... (0 Replies)
Discussion started by: rrd1986
0 Replies

3. UNIX for Advanced & Expert Users

migrating unix mp-ras 32 bit to linux suse 64 bit

Hi. I need to migrate the whole unix environment from a Unix mp-ras 32 bit to a Linux Suse 64 bit. 1) can i use cpio to copy the data? 2) can i just copy the users from unix to linux or do i have to create them by hand 3) are there any other concerns i should worry about? thanx (1 Reply)
Discussion started by: mrodrig
1 Replies

4. Programming

copying or concatinating string from 1st bit, leaving 0th bit

Hello, If i have 2 strings str1 and str2, i would like to copy/concatenate str2 to str1, from 1st bit leaving the 0th bit. How do i do it? (2 Replies)
Discussion started by: jazz
2 Replies
Login or Register to Ask a Question
elf_getbase(3ELF)					       ELF Library Functions						 elf_getbase(3ELF)

NAME
elf_getbase - get the base offset for an object file SYNOPSIS
cc [ flag ... ] file ... -lelf [ library ... ] #include <libelf.h> off_t elf_getbase(Elf *elf); DESCRIPTION
The elf_getbase() function returns the file offset of the first byte of the file or archive member associated with elf, if it is known or obtainable, and -1 otherwise. A null elf is allowed, to simplify error handling; the return value in this case is -1. The base offset of an archive member is the beginning of the member's information, not the beginning of the archive member header. ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Interface Stability |Stable | +-----------------------------+-----------------------------+ |MT-Level |MT-Safe | +-----------------------------+-----------------------------+ SEE ALSO
ar.h(3HEAD), elf(3ELF), elf_begin(3ELF), libelf(3LIB), attributes(5) SunOS 5.10 11 Jul 2001 elf_getbase(3ELF)