All of lore.kernel.org
 help / color / mirror / Atom feed
* Newbie question
@ 2007-03-20  0:02 Sven Johnsson
  2007-03-20  3:36 ` Lee Revell
  0 siblings, 1 reply; 145+ messages in thread
From: Sven Johnsson @ 2007-03-20  0:02 UTC (permalink / raw)
  To: alsa-devel

Hello,

I'm developing an embedded VoIP Linux phone and will soon write a
simple ALSA driver for mono usage. I have all the necessary code to
access the hardware. Can anyone advise me about how to interface ALSA?

Best Regards,
Sven Johnsson

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV

^ permalink raw reply	[flat|nested] 145+ messages in thread
* newbie question
@ 2018-07-25  3:12 Qingyu Song
  2018-07-25  3:57 ` Zhenhua Luo
  0 siblings, 1 reply; 145+ messages in thread
From: Qingyu Song @ 2018-07-25  3:12 UTC (permalink / raw)
  To: meta-freescale

[-- Attachment #1: Type: text/plain, Size: 527 bytes --]

First time to post here and not sure if this is the mail list for some
newbie questions.

My target board is so what close the freescale p2020 rdb board. As a start
point I would like to use meta-freescale (
git://git.yoctoproject.org/meta-freescale ) as my bsp layer.

From the README file, it says

This layer depends on:

URI: git://git.openembedded.org/openembedded-core
branch: master
revision: HEAD


Do I need clone this layer to my Poky? Or OE core is already part of the
Yocto 2.5?

Thanks
Qingyu

[-- Attachment #2: Type: text/html, Size: 1065 bytes --]

^ permalink raw reply	[flat|nested] 145+ messages in thread
* newbie question
@ 2013-02-19  5:04 horseriver
  0 siblings, 0 replies; 145+ messages in thread
From: horseriver @ 2013-02-19  5:04 UTC (permalink / raw)
  To: grub-devel

hi:)

  If booting from geub ,  how to know the address where the grub loads bootsect and setup  to ?
 thanks!


^ permalink raw reply	[flat|nested] 145+ messages in thread
* newbie question
@ 2012-02-18 10:54 santosh prasad nayak
  2012-02-18 15:05 ` Dan Carpenter
  2012-02-18 16:52 ` Dan Carpenter
  0 siblings, 2 replies; 145+ messages in thread
From: santosh prasad nayak @ 2012-02-18 10:54 UTC (permalink / raw)
  To: kernel-janitors

Hi all,

Just joined the mailing list.

I was going through the TODO list (
http://kernelnewbies.org/KernelJanitors/Todo )

For which branch fixes should be sent ?  3.26 ?? or 3.3-rc3 ?? or something
else ?


regards
santosh

^ permalink raw reply	[flat|nested] 145+ messages in thread
* Re: Newbie question
@ 2010-09-23  4:59 George Spelvin
  2010-09-23  6:29 ` Thomas Hochstein
  0 siblings, 1 reply; 145+ messages in thread
From: George Spelvin @ 2010-09-23  4:59 UTC (permalink / raw)
  To: arjuncode; +Cc: git, linux

Jakub Narebski wrote:
> You have the repository itself (the object database containg all
> version info plus other info).  Put those files and directories into
> <project>/.git subdirectory, and use "git checkout" from within it.
> You should have checked out files in <project>/ directory.

What he said.  Cloning it in the first place is the easier approach, but
what happened is that you got a copy of a "bare" repostitory (without
checked-out files, suitable only for remote access), which is typically
in a directory named "project.git".

What you want is a normal tree, where all the git files are in "project/.git"

This is pretty easy to do:

mkdir project
mv project.git project/.git
cd project
git config core.bare true
git checkout

That does 3 things:
- Set up the directory structure correctly,
- unset the core.bare flag, which disables certain commands that
  make no sense on a bare repository, and
- Check out a working copy

^ permalink raw reply	[flat|nested] 145+ messages in thread
* Newbie question
@ 2010-09-19 23:51 kinley
  2010-09-19 23:59 ` Andrew Keller
                   ` (2 more replies)
  0 siblings, 3 replies; 145+ messages in thread
From: kinley @ 2010-09-19 23:51 UTC (permalink / raw)
  To: git


Hi,
I am new to question. Please help me with this.
I copied an already existing project from a remote server using scp to my
local directory.
The contents of this directory are
   branches
   config
   description
   HEAD
   hooks
   info
   objects
   ref

I checked all the directories and sub-directories but could not find a
single source code file (in C language).
All I can see at the leaf level appear to be MD5 hash code.

Is there any command to retrieve the source files ? 
As per manual, only then I guess I can add them to git.

Any help would be appreciated.
Thanks
-- 
View this message in context: http://git.661346.n2.nabble.com/Newbie-question-tp5548737p5548737.html
Sent from the git mailing list archive at Nabble.com.

^ permalink raw reply	[flat|nested] 145+ messages in thread
* newbie question
@ 2010-05-20 21:17 Rich Pixley
       [not found] ` <AANLkTikeGWuCeGVELFipNnA_EQ-UHm4fbTvi6-qBiRBi@mail.gmail.com>
       [not found] ` <4BF5A6E0.6040703-C65YXLrEp3M@public.gmane.org>
  0 siblings, 2 replies; 145+ messages in thread
From: Rich Pixley @ 2010-05-20 21:17 UTC (permalink / raw)
  To: linux-nilfs-u79uwXL29TY76Z2rM5mHXA

Can nilfs "roll back" to a previous state of the file system?

For example, at some time = T(N), I have a file system in a known good 
state.  So I check point it before taking a risky action.  Then I take a 
risky action which leads me to the file system state at T(N+1).

Sometimes, my risky action will be fine and I'll want to continue on.  
Other times, my risky action will result in a polluted, useless 
collection of data which I would like to discard.

I understand that at time T(N+1) nilfs will allow me to create a 
checkpoint of T(N) which can be mounted read-only.  What I'm asking is 
if nilfs can discard the state at T(N+1) and "roll back" to the state at 
T(N) as though T(N+1) had never happened.

Can nilfs do this kind of "roll back"?

--rich
--
To unsubscribe from this list: send the line "unsubscribe linux-nilfs" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 145+ messages in thread
* newbie question
@ 2009-07-30 18:03 Gergely Buday
  0 siblings, 0 replies; 145+ messages in thread
From: Gergely Buday @ 2009-07-30 18:03 UTC (permalink / raw)
  To: netfilter

Dear All,

I have a basic question: I need to enable a cvs server to telnet back
to port 2401 as described at

http://forums.fedoraforum.org/archive/index.php/t-37342.html

---
> $ cvs login
> Logging in to :pserver:rob@<hostname>:2401/home/repository
> CVS password:
> cvs [login aborted]: connect to <hostname>(<IP address>):2401
> failed: No route to host
>
> i've verified that the network is up, that i can ssh into the
> server, that xinetd is running, that cvspserver is on, that the
> CVS repo is unchanged from what it was before the re-install,
> etc. i'm not sure what else i might be checking.

You should be able to telnet into your server from a remote system
on port 2401 to your pserver box. If not, perhaps you haven't
opened up your iptables firewall for access to this port?
---

how can I do that with iptables temporarily?

- Gergely

^ permalink raw reply	[flat|nested] 145+ messages in thread
* newbie question
@ 2009-07-03 18:39 Alex K
  2009-07-03 19:12 ` dloewenherz
  2009-07-03 19:22 ` Junio C Hamano
  0 siblings, 2 replies; 145+ messages in thread
From: Alex K @ 2009-07-03 18:39 UTC (permalink / raw)
  To: git

Hello,

I would think the following simple pattern would be possible:

Create two branches A and B. Switch to A, modify some files, do not
commit to A, switch to B. Now B should not show any of the changes
performed to A? However a git status while on B does show that the
files on A have been modified. Is there something I am missing?

Thank you,

Alex

^ permalink raw reply	[flat|nested] 145+ messages in thread
* Re: OE and the developing host
  2007-02-28 10:31     ` Koen Kooi
@ 2007-02-28 15:58 Hans Henry von Tresckow
  2007-02-28 10:09 ` Nicola Ranaldo
  0 siblings, 1 reply; 145+ messages in thread
From: Hans Henry von Tresckow @ 2007-02-28 15:58 UTC (permalink / raw)
  To: openembedded-devel

On 2/28/07, Koen Kooi <koen@dominion.kabel.utwente.nl> wrote:
>
>
> OpenSuSE should work as well, but stay away from Red Hat/Fedora based
> stuff, since you
> can't build a working qemu-native on that.
>
> regards,
>
> Koen


Has anybody ever tried to figure out which  Red Hat'isms might be causing
the problem?


^ permalink raw reply	[flat|nested] 145+ messages in thread
* Newbie question
@ 2007-01-02 23:46 digital tech support
       [not found] ` <20070102234608.47829.qmail-8hg4vH1ahbiB9c0Qi4KiSlZ8N9CAUha/QQ4Iyu8u01E@public.gmane.org>
  0 siblings, 1 reply; 145+ messages in thread
From: digital tech support @ 2007-01-02 23:46 UTC (permalink / raw)
  To: kvm-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f


[-- Attachment #1.1: Type: text/plain, Size: 466 bytes --]

Forgvie me if this is the wrong list and point me to the right one .. 

I have FC6 guest running and I can connect to my LAN from the guest OS. How do I ssh into the guest from the host?

Host IP: 192.168.0.139
Guest IP: 10.0.2.15

Should add a route to 10.0.2.0 network on my host?

Thanks
Josh

 __________________________________________________
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

[-- Attachment #1.2: Type: text/html, Size: 499 bytes --]

[-- Attachment #2: Type: text/plain, Size: 347 bytes --]

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV

[-- Attachment #3: Type: text/plain, Size: 186 bytes --]

_______________________________________________
kvm-devel mailing list
kvm-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org
https://lists.sourceforge.net/lists/listinfo/kvm-devel

^ permalink raw reply	[flat|nested] 145+ messages in thread
* Newbie question
@ 2006-11-21 22:37 Michael Weber
  2006-11-22  0:08 ` Dave Wysochanski
  2006-11-22  0:22 ` Bernd Zeimetz
  0 siblings, 2 replies; 145+ messages in thread
From: Michael Weber @ 2006-11-21 22:37 UTC (permalink / raw)
  To: dm-devel

Greetings, all!

I am trying to get my database server to use a pair of QLogic 2460's as
a redundant data path.  The OS is Red Hat ES 4.

Right now I am just looking to know if this is a forum where I can get
some help with configuring the multipath.conf file, et. al.  If this is
a good place, I will ask again with all the needed info.

If not, can someone point me in the right direction?

(I tried Red Hat already, BTW.  No joy.)

Thanx!

-Michael


E-MAIL CONFIDENTIALITY NOTICE: This communication and any associated 
file(s) may contain privileged, confidential or proprietary 
information or be protected from disclosure under law ("Confidential 
Information").  Any use or disclosure of this Confidential Information,
or taking any action in reliance thereon, by any individual/entity 
other than the intended recipient(s) is strictly prohibited.  This 
Confidential Information is intended solely for the use of the 
individual(s) addressed. If you are not an intended recipient, you 
have received this Confidential Information in error and have an 
obligation to promptly inform the sender and permanently destroy, 
in its entirety, this Confidential Information (and all copies 
thereof).  E-mail is handled in the strictest of confidence by 
Allied National, however, unless sent encrypted, it is not a secure 
communication method and may have been intercepted, edited or 
altered during transmission and therefore is not guaranteed.

^ permalink raw reply	[flat|nested] 145+ messages in thread
* Newbie question
@ 2006-08-31 12:55 Eric Benton
  0 siblings, 0 replies; 145+ messages in thread
From: Eric Benton @ 2006-08-31 12:55 UTC (permalink / raw)
  To: xen-devel

Hi,

How can I build the Xen0 kernel with ntfs support?

Thanks,
Eric.

^ permalink raw reply	[flat|nested] 145+ messages in thread
* Newbie question
@ 2006-06-06  9:41 Kobus Wolvaardt
  0 siblings, 0 replies; 145+ messages in thread
From: Kobus Wolvaardt @ 2006-06-06  9:41 UTC (permalink / raw)
  To: linux-mtd

Hi,

I'm trying to build grub for an embedded system. I'm working in gentoo and I 
have most of my stuff up and running. I use kernel 2.6.11, i've compiled mtd 
support and after lots of headaces (and then changing to a workind doc) I got 
the doc to recognize.

Not for the question.... I have Karim Yaghmour's book and I tried to follow 
the instructions to the letter. Problem is it doesnt compile: error below. (I 
can only think that it has something to do with a too new gcc version, any 
other idees) And more importantly how do I fix it or what newer version of 
the grub patch can I download (where, cvs?) and what version of grub can be 
patched with it?

Thanks a million,
Kobus




////////////////command and compile error
as  -DHAVE_CONFIG_H -I. -I. -I.. -I../stage1 -Wall -Wmissing-prototypes 
-Wunused -Wshadow -Wpointer-arith -malign-jumps=1 -malign-loops=1 
-malign-functions=1 -Wundef -g -c `test -f asm.S || echo './'`asm.S
as: unrecognized option `-HAVE_CONFIG_H'
/////////////////

-- 
This message was scanned for viruses by MailScanner and Sophos.

^ permalink raw reply	[flat|nested] 145+ messages in thread
* newbie question
@ 2006-05-16  7:03 Li Yang-r58472
  2006-05-16  7:09 ` Matthias Kestenholz
  0 siblings, 1 reply; 145+ messages in thread
From: Li Yang-r58472 @ 2006-05-16  7:03 UTC (permalink / raw)
  To: git

I just starting to use git recently.  I have setup a public repository, and pushed cloned open source repository to it.  As most documents suggested, I need to run a repack on the public repository.  Normally git-repack is run in the source directory(the parent directory of .git).  Considering the public repository, there is no source directory and the *.git is the uppest level directory.  Where am I supposed to run the git-repack command?

^ permalink raw reply	[flat|nested] 145+ messages in thread
* newbie question
@ 2005-09-21 14:43 phess.linux
  2005-09-21 14:50 ` Nigel Stephens
  0 siblings, 1 reply; 145+ messages in thread
From: phess.linux @ 2005-09-21 14:43 UTC (permalink / raw)
  To: linux-mips

Hi there!

First I have to say that I'm a newbie without any experience with "linux
kernel". So don't blame me ;-)

I downloaded toolchains from MIPS Technologies.
I downloaded the newest version Linux 2.6.14-rc1 via CVS.

I installed the toolchain and tested some examples like "hello world" and
"minicom". They worked fine. I copied the linux kernel into a new folder of
the toolchain example directory. Then I tried to make (with command sde-make
menuconfig and then sde-make SBD=GSIM32L) the linux kernel. But all I get
are the following five lines:

  CHK     include/linux/version.h
  CC      arch/mips/kernel/asm-offsets.s
gcc: cannot specify -o with -c or -S and multiple compilations
sde-make[1]: *** [arch/mips/kernel/asm-offsets.s] Error 1
sde-make: *** [prepare0] Error 2

Now I need some help. Thx!

-- 
GMX DSL = Maximale Leistung zum minimalen Preis!
2000 MB nur 2,99, Flatrate ab 4,99 Euro/Monat: http://www.gmx.net/de/go/dsl

^ permalink raw reply	[flat|nested] 145+ messages in thread
* newbie question
@ 2005-09-03 17:16 raphael
  2005-09-03 17:36 ` jeff
  0 siblings, 1 reply; 145+ messages in thread
From: raphael @ 2005-09-03 17:16 UTC (permalink / raw)
  To: linux-assembly

Hello list

I would like to know how i can manage to read the entry
on the keyboard without using C functions like scanf or get.

thank you for the help and forgive my poor english

Raphael



^ permalink raw reply	[flat|nested] 145+ messages in thread
* newbie question
@ 2005-08-22 15:26 gxkahn
  0 siblings, 0 replies; 145+ messages in thread
From: gxkahn @ 2005-08-22 15:26 UTC (permalink / raw)
  To: linux-mtd

Hi

i have to build driver for my NOR chip.
can't find explanation where to put it in MTD.
is there any manual/tutorial ?

^ permalink raw reply	[flat|nested] 145+ messages in thread
* newbie question
@ 2005-08-12  4:12 Michael
  2005-08-12  5:01 ` mehta kiran
  0 siblings, 1 reply; 145+ messages in thread
From: Michael @ 2005-08-12  4:12 UTC (permalink / raw)
  To: nfs

Hi,=20

how can I understand following output from "tcpdump -p", at that time,
I am "dd" a file into a nfs mount point. Can anyone send me a
reference link to me? especially what's the meaning of "frag
55141:1292@2960", what's "DF"...

11:40:16.499209 192.168.0.148.3554257722 > 192.168.0.90.nfs: 1472
write [|nfs] (frag 55140:1480@0+)
11:40:16.499412 192.168.0.90.nfs > 192.168.0.148.3302599482: reply ok 136 (=
DF)
11:40:16.499450 192.168.0.148 > 192.168.0.90: udp (frag 55141:1292@2960)
11:40:16.499458 192.168.0.148 > 192.168.0.90: udp (frag 55141:1480@1480+)
11:40:16.499464 192.168.0.148.3571034938 > 192.168.0.90.nfs: 1472
write [|nfs] (frag 55141:1480@0+)
11:40:16.499777 192.168.0.90.nfs > 192.168.0.148.3319376698: reply ok 136 (=
DF)
11:40:16.499813 192.168.0.148 > 192.168.0.90: udp (frag 55142:1292@2960)
11:40:16.499821 192.168.0.148 > 192.168.0.90: udp (frag 55142:1480@1480+)

Thank,

Mike


-------------------------------------------------------
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
_______________________________________________
NFS maillist  -  NFS@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nfs

^ permalink raw reply	[flat|nested] 145+ messages in thread
* Newbie question
@ 2005-05-18 13:38 observer
  0 siblings, 0 replies; 145+ messages in thread
From: observer @ 2005-05-18 13:38 UTC (permalink / raw)
  To: linux-hotplug

Hi,
Can somebody please help me with this?
I have a usb floppy and when i insert it in the system it doesnt appear
in the usermount app, i have seen the logs and updfstab is run, but
fstab is not modified. Please how can i make the floppy configured
correctly whith hotplug, im usin Fedora Core 2 whith kudzu disabled but
installed, i prefer using only hotplug for this.
Sorry for my bad english.
Thanks in advance. 



-------------------------------------------------------
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_idt12&alloc_id\x16344&op=click
_______________________________________________
Linux-hotplug-devel mailing list  http://linux-hotplug.sourceforge.net
Linux-hotplug-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/linux-hotplug-devel

^ permalink raw reply	[flat|nested] 145+ messages in thread
* Newbie Question...
@ 2004-12-23 19:23 David Templer
  2004-12-24  6:34 ` aq
  2004-12-24 12:29 ` M.A. Williamson
  0 siblings, 2 replies; 145+ messages in thread
From: David Templer @ 2004-12-23 19:23 UTC (permalink / raw)
  To: xen-devel

Hi,

I would like to try Xen but I have a couple of questions ....

Is setting up Xen similar to installing a distro ... ? if so how does 
Xen seperate virtual machines (& is possible to switch between them?)

I have 40gb spare is that enough to run a couple of VM just to test it out ?

Dave T.


-------------------------------------------------------
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/

^ permalink raw reply	[flat|nested] 145+ messages in thread
* RE: Newbie Question
@ 2004-08-12 19:10 Rigler, Steve
  0 siblings, 0 replies; 145+ messages in thread
From: Rigler, Steve @ 2004-08-12 19:10 UTC (permalink / raw)
  To: autofs

It looks like the 4.1.3-13 is built against/dependant on OpenLDAP 2.2.

IIRC, RH8 comes with OpenLDAP 2.0.x.

-Steve

-----Original Message-----
From: autofs-bounces@linux.kernel.org
[mailto:autofs-bounces@linux.kernel.org] On Behalf Of Anne.Bourgeois
Sent: Thursday, August 12, 2004 1:44 PM
To: jmoyer@redhat.com
Cc: autofs@linux.kernel.org
Subject: Re: [autofs] Newbie Question

Jeff,

My apologies.  I should have included more info in my original post.  
Please see my answers below...

Jeff Moyer wrote:

>==> Regarding [autofs] Newbie Question; "Anne.Bourgeois"
<anne.bourgeois@analog.com> adds:
>
>anne> I am pretty new to the list, and I have a very basic question.
How
>anne> do I install the kernel patch so that I can install the autofs
rpm?
>
>What distribution are you running?  Do you want to patch a kernel from
that
>distribution (recommended), or run a vanilla kernel from kernel.org?
>
>  
>
We are currently running RedHat 8.0 with the 2.4.20.20-8smp kernel.  We 
are looking to go to Enterprise 3 in the near future, but are dependent 
on some software vendors, so we are holding back at the moment.  We are 
seeing several autofs issues, which is the reason that I am trying these

updates.

>anne> When I tried to just install the new autofs rpm, I got a
dependency
>anne> error:
>
>anne>         liblber-2.2.so.7 is needed by autofs-4.1.3-13
>anne> libldap-2.2.so.7 is needed by autofs-4.1.3-13
>
>If you're running Fedora, I'd suggest upgrading your current system
with
>yum.
>
>  
>
I'd prefer not to change the basic system that I'm running, as I have 
several users on the current system.  Running on a large network, we see

the automount map caching as a big problem right now.  I am hoping to 
find a way to fix it without too much upgrading, re-kicking of machines,

etc.

>anne> I already have autofs-4.1.3-9 installed and didn't see any
dependency
>anne> errors when I installed that.
>
>Well, there should be no added dependency requirements.  You _could_
try
>doing an rpm -i --force of the autofs package.
>  
>
# rpm -ivh autofs-4.1.3-13.i386.rpm
error: Failed dependencies:
        liblber-2.2.so.7 is needed by autofs-4.1.3-13
        libldap-2.2.so.7 is needed by autofs-4.1.3-13
# rpm -ivh autofs-4.1.3-13.i386.rpm --force
error: Failed dependencies:
        liblber-2.2.so.7 is needed by autofs-4.1.3-13
        libldap-2.2.so.7 is needed by autofs-4.1.3-13
# rpm -ivh autofs-4.1.3-13.i386.rpm --nodeps --force
Preparing...                ########################################### 
[100%]
   1:autofs                 ########################################### 
[100%]

Finally worked when I used the "--nodeps" flag.  Is this OK, though?

>anne> Is there information somewhere that I can go find about
installing
>anne> the kernel patch?
>
>Certainly, but let's figure out which kernel you want to build, first.
>
>-Jeff
>
>
>  
>

_______________________________________________
autofs mailing list
autofs@linux.kernel.org
http://linux.kernel.org/mailman/listinfo/autofs

^ permalink raw reply	[flat|nested] 145+ messages in thread
* Newbie Question
@ 2004-08-12 17:51 Anne.Bourgeois
  2004-08-12 18:28 ` Jeff Moyer
  0 siblings, 1 reply; 145+ messages in thread
From: Anne.Bourgeois @ 2004-08-12 17:51 UTC (permalink / raw)
  To: autofs

I am pretty new to the list, and I have a very basic question.

How do I install the kernel patch so that I can install the autofs rpm?  
When I tried to just install the new autofs rpm, I got a dependency error:

        liblber-2.2.so.7 is needed by autofs-4.1.3-13
        libldap-2.2.so.7 is needed by autofs-4.1.3-13

I already have autofs-4.1.3-9 installed and didn't see any dependency 
errors when I installed that.

Is there information somewhere that I can go find about installing the 
kernel patch?

Thank you for any help.
Annie

^ permalink raw reply	[flat|nested] 145+ messages in thread
* Newbie Question
@ 2004-06-08  4:16 mafioso1823
  2004-06-08 11:09 ` John A. Sullivan III
  0 siblings, 1 reply; 145+ messages in thread
From: mafioso1823 @ 2004-06-08  4:16 UTC (permalink / raw)
  To: netfilter

I am trying to use this piece of code that i found in my rc.firewall script
but it doesn't seem to want to take it can anyone tell me why or how i can
get this to work?

#The Mangle portion of the ruleset. Here is where unwanted packet types get
dropped.
#This helps in making port scans against your server a bit more time
consuming and difficult, but not impossible.
*mangle
:PREROUTING ACCEPT [444:43563]
:INPUT ACCEPT [444:43563]
:FORWARD ACCEPT [0:0]
:OUTPUT ACCEPT [402:144198]
:POSTROUTING ACCEPT [402:144198]
-A PREROUTING -p tcp -m tcp --tcp-flags FIN,SYN,RST,PSH,ACK,URG
FIN,PSH,URG -j DROP
-A PREROUTING -p tcp -m tcp --tcp-flags FIN,SYN,RST,PSH,ACK,URG NONE -j DROP
-A PREROUTING -p tcp -m tcp --tcp-flags SYN,RST SYN,RST -j DROP
-A PREROUTING -p tcp -m tcp --tcp-flags FIN,SYN FIN,SYN -j DROP
-A PREROUTING -p tcp -m tcp --tcp-flags FIN,SYN,RST,PSH,ACK,URG
FIN,PSH,URG -j DROP
-A PREROUTING -p tcp -m tcp --tcp-flags FIN,SYN,RST,PSH,ACK,URG NONE -j DROP
-A PREROUTING -p tcp -m tcp --tcp-flags SYN,RST SYN,RST -j DROP
-A PREROUTING -p tcp -m tcp --tcp-flags FIN,SYN FIN,SYN -j DROP
-A PREROUTING -p tcp -m tcp --tcp-flags FIN,SYN,RST,PSH,ACK,URG
FIN,PSH,URG -j DROP
-A PREROUTING -p tcp -m tcp --tcp-flags FIN,SYN,RST,PSH,ACK,URG NONE -j DROP
-A PREROUTING -p tcp -m tcp --tcp-flags SYN,RST SYN,RST -j DROP
-A PREROUTING -p tcp -m tcp --tcp-flags FIN,SYN FIN,SYN -j DROP
-A PREROUTING -p tcp -m tcp --tcp-flags FIN,SYN,RST,PSH,ACK,URG
FIN,PSH,URG -j DROP
-A PREROUTING -p tcp -m tcp --tcp-flags FIN,SYN,RST,PSH,ACK,URG NONE -j DROP
-A PREROUTING -p tcp -m tcp --tcp-flags SYN,RST SYN,RST -j DROP
-A PREROUTING -p tcp -m tcp --tcp-flags FIN,SYN FIN,SYN -j DROP
COMMIT



^ permalink raw reply	[flat|nested] 145+ messages in thread
* newbie question
@ 2004-04-08 11:57 M. Ahmad Ijaz
  2004-04-08 12:02 ` Antony Stone
                   ` (2 more replies)
  0 siblings, 3 replies; 145+ messages in thread
From: M. Ahmad Ijaz @ 2004-04-08 11:57 UTC (permalink / raw)
  To: netfilter

[-- Attachment #1: Type: text/plain, Size: 1216 bytes --]

hi,

I just wanna know few things , i have installed red hat 9, iptable is installed.

Now the thing is, i didnt know at first that i have to load the modules, i was getting the message

iptables: No chain/target/match by that name

so after couple of searches i did find some help and i manage to apply few commands i.e.

modprobe ip_tables
modprobe ip_conntrack
modprobe iptable_nat
modprobe ip_conntrack_ftp
modprobe ip_nat_ftp

iptables -P INPUT ACCEPT
iptables -P OUTPUT ACCEPT
iptables -P FORWARD DROP
iptables -A INPUT -p icmp --icmp-type 8 -j DROP 


all the above commands are accepted at command prompt, but when i try to use this command

iptables -A PREROUTING -s xxx.xxx.xxx.xxx/yyy.yyy.yyy.yyy -p tcp -m tcp --dport 80 -j REDIRECT --to-ports 8080 where xxx is any IP and yyy is the subnet mask, it returns me the same message i.e. 
iptables: No chain/target/match by that name

So it also give the same message with POSTROUTING.


also i dont wana load the modules and the commands each time the system starts, so when i type the commands i used iptables-save command to save tat, also is there ne possibility where i can store the command and execute when system startsup

[-- Attachment #2: Type: text/html, Size: 1962 bytes --]

^ permalink raw reply	[flat|nested] 145+ messages in thread
[parent not found: <385FE68A-FB2E-11D7-B96A-000393B2CBCE@apple.com>]
* newbie question.
@ 2003-08-25 13:11 chentschel2
  0 siblings, 0 replies; 145+ messages in thread
From: chentschel2 @ 2003-08-25 13:11 UTC (permalink / raw)
  To: netfilter-devel

Please , 
     I\'m trying to write a new module and i need some help ;). 
     What i need to do is a module for dnat UDP packets but always to the same IP if they came from a determinated IP.. i don\'t know if i\'m clear.. but the idea is to use it for UDP RAS msgs in an h323 session... haveing a proxy that balance all those msgs to some RAS servers.
     well i thougth to write an nat-helper module.. but i don;t know if it\'s right.. may be the right thing is to write a new target module?.. 
    Please can someone give me a hand with this? 

Thanks a lot in advance. 
Christian.

^ permalink raw reply	[flat|nested] 145+ messages in thread
* [ANNOUNCE] ELKS-0.1.3-pre1 released
@ 2003-07-16 16:38 Miguel Bolanos
  2003-07-17  1:43 ` Newbie Question Sérgio Duarte e Silva
  0 siblings, 1 reply; 145+ messages in thread
From: Miguel Bolanos @ 2003-07-16 16:38 UTC (permalink / raw)
  To: linux-8086


Greetings to all.

I have the proud to announce that ELKS-0.1.3-pre1 have been released.

After a long period of inactivity, activity has resumed on the ELKS
kernel. Various changes relating to debugging ELKS kernel panics have
been integrated into this release, along with various tweaks to the
spelling of messages displayed by the kernel

To get the latest ELKS source via CVS use:

cvs -d:pserver:anonymous@cvs.sourceforge.net:/cvsroot/elks login
 
cvs -z3 -d:pserver:anonymous@cvs.sourceforge.net:/cvsroot/elks co elks

Miguel


^ permalink raw reply	[flat|nested] 145+ messages in thread
* Newbie Question...
@ 2003-03-26 17:37 Carlos Cajina
  2003-03-26 18:53 ` Joel Newkirk
  0 siblings, 1 reply; 145+ messages in thread
From: Carlos Cajina @ 2003-03-26 17:37 UTC (permalink / raw)
  To: netfilter

[-- Attachment #1: Type: text/plain, Size: 295 bytes --]

Hi, I'm Carlos from Nicaragua but currently living in Mexico... I just signed up to this list and already have one question in mind: Is it possible to specify a particular IP address range when creating filtering rules? If so... where can I find the info that talks about it?

Best regards!!!!

[-- Attachment #2: Type: text/html, Size: 711 bytes --]

^ permalink raw reply	[flat|nested] 145+ messages in thread
* newbie question
@ 2003-03-24 15:54 Scott Melnyk
  2003-03-24 16:27 ` Joel Newkirk
  0 siblings, 1 reply; 145+ messages in thread
From: Scott Melnyk @ 2003-03-24 15:54 UTC (permalink / raw)
  To: netfilter

Hello, I hope this is not to simple to post. I have not quite got
IPTABLEs use down.

I am looking at setting up local firewalls on  a cluster of machines
(almost 100 linux boxes running RH 7.3 and 8.0).  The login nodes for
the cluster have extensive hardware based firewalling rules.  

On the rest of the cluster I would like to set IPTABLEs to accept
everything within the subnet and drop the anything from and outside
address.

My thought for setting the rules on each machine is by pushing out and
running a bash script.
Is it possible to simply set up a firewall with something as simple as:


#!/bin/bash
#

service iptables stop

iptables -F

iptables -A INPUT -m limit -j LOG
iptables -A OUTPUT -m limit -j LOG


iptables -A INPUT -s 130.xxx.xxx.128/25  ACCEPT
#rule here to drop all non 130.xxx.xxx.128/25

iptables -P FORWARD DROP
iptables -P INPUT DROP

service iptables save


We have a subnet of 130.xxx.xxx.128/255.255.255.128  
How can I define a mandatory drop of everything not in
130.xxx.xxx.128/255.255.255.128? 

Finally what risks am I taking by doing this?  Other than if someone
hacks into one of the login nodes, I realize this would then give them
access to the rest of the cluster.

All thoughts, advice and suggestions very welcome.  Thank you in
advance.

Sincerely,
Scott Melnyk



^ permalink raw reply	[flat|nested] 145+ messages in thread
* newbie question
@ 2003-03-09 17:21 ayachi gherissi
  2003-03-10  2:06 ` Antonino Daplas
  0 siblings, 1 reply; 145+ messages in thread
From: ayachi gherissi @ 2003-03-09 17:21 UTC (permalink / raw)
  To: linux-fbdev-devel

[-- Attachment #1: Type: text/plain, Size: 556 bytes --]


hi  i'm newbie in framebuffer driver development

i have a graphics card siliconmotion 721 (Lynx3DM) i want to make the framebuffer driver i get the spec of the card

i take cyber2000fb driver and i start modifying it


i activate pci burst 
    enable linear memory
    get memory size
    calculate vclck
    calculate mclck  

i know that each hardware is specfic
my question is
what other general steps related to hardware
must i done to get things work

thank's


 



---------------------------------
Post your free ad now! Yahoo! Canada Personals

[-- Attachment #2: Type: text/html, Size: 745 bytes --]

^ permalink raw reply	[flat|nested] 145+ messages in thread
[parent not found: <Pine.VMS.3.91-2(vms).1030228001923.25337A-100000@cs.felk.cvut.cz>]
* Newbie Question
@ 2003-02-27 22:57 dAvId KeDrOsKy
  2003-02-27 23:19 ` Dragan Stancevic
                   ` (3 more replies)
  0 siblings, 4 replies; 145+ messages in thread
From: dAvId KeDrOsKy @ 2003-02-27 22:57 UTC (permalink / raw)
  To: Linux Assembly Programming List

The following program gives me a seg fault.  But I don't understand why.

1.	mov	ebx, dword 1234
2.	mov	ax, [ebx]

To me the code would mean 1) move the integer 1234 into ebx and then 2) move 
the value of ebx into ax.  But of course my reasoning is incorrect.

Feedback would be great.

Dave

^ permalink raw reply	[flat|nested] 145+ messages in thread
* Newbie Question
@ 2003-02-24 16:23 Jeffrey Corbit
  2003-02-24 16:50 ` Aldo S. Lagana
  0 siblings, 1 reply; 145+ messages in thread
From: Jeffrey Corbit @ 2003-02-24 16:23 UTC (permalink / raw)
  To: netfilter

I'm running POPTOP on a linux 2.4.18 kernel.  Have been having some
connection problems and questions to the poptop mailing list have suggested
that I need to install the Netfilter Helper PPTP files.  I have successfully
downloaded these files to my linux server and they now reside in
/root/netfilter-extensions... folder.  My question is what do I do with them
now.  I can't find any documentation a to how to apply these files to my
current configuration.

Thanks for any help you can give!

Jeff



^ permalink raw reply	[flat|nested] 145+ messages in thread
* newbie question
@ 2003-02-20 14:45 ljp
  0 siblings, 0 replies; 145+ messages in thread
From: ljp @ 2003-02-20 14:45 UTC (permalink / raw)
  To: alsa devel

I have a rme digi96 pst, and was wondering 2 things, how do I access the 
digital channels 1-8 both from users space and programmatically?

ljp



-------------------------------------------------------
This SF.net email is sponsored by: SlickEdit Inc. Develop an edge.
The most comprehensive and flexible code editor you can use.
Code faster. C/C++, C#, Java, HTML, XML, many more. FREE 30-Day Trial.
www.slickedit.com/sourceforge

^ permalink raw reply	[flat|nested] 145+ messages in thread
* Newbie question
@ 2003-02-16  7:04 Shankar; Hari
  2003-02-16  7:57 ` Joel Newkirk
  0 siblings, 1 reply; 145+ messages in thread
From: Shankar; Hari @ 2003-02-16  7:04 UTC (permalink / raw)
  To: netfilter


Hello,

I'm trying to use IPTables in User Mode Linux. I've configured UML to
use IPTables replacing IPChains. But when I start up UML, and try to play
around with IPTables, I get the message,

iptables v1.2.4: can't initialize iptables table `filter': Table does not
exist (do you need to insmod?)
Perhaps iptables or your kernel needs to be upgraded.

The UML version that I'm running is 2.4.19.

What could I be doing wrong? I'd very much appreciate any help!

Thanks,
Hari




^ permalink raw reply	[flat|nested] 145+ messages in thread
* Newbie Question
@ 2003-01-25 10:24 Adam Tee
  0 siblings, 0 replies; 145+ messages in thread
From: Adam Tee @ 2003-01-25 10:24 UTC (permalink / raw)
  To: Alsa-Devel

Hi,

I'm new to alsa programming and am trying to add an alternative playback
option for denemo, a Gtk frontend for Lilypond.  At present we have code
   to playback a note immediately it is inserted to the score via the OSS
style of programming, this goes to /dev/sequencer0, but under the alsa
drivers this does not work for me, at least.

My question is should I use the sequencer api or the raw midi api??
and any tips on how to use it.

I am currently using a SBLive card and am not having much luck.



Adam
Maintainer GNU Denemo, a GTK+ frontend to GNU Lilypond




-------------------------------------------------------
This SF.NET email is sponsored by:
SourceForge Enterprise Edition + IBM + LinuxWorld = Something 2 See!
http://www.vasoftware.com

^ permalink raw reply	[flat|nested] 145+ messages in thread
[parent not found: <20030120105301.22841.47459.Mailman@kashyyyk>]
* Newbie question
@ 2002-12-08 23:37 Glen Spidal
  2002-12-10 13:09 ` Bart
  0 siblings, 1 reply; 145+ messages in thread
From: Glen Spidal @ 2002-12-08 23:37 UTC (permalink / raw)
  To: Net Filter


[-- Attachment #1.1: Type: text/plain, Size: 210 bytes --]

What IPTables commands do I need to issue in a script to allow port 25 and
110 (email) to work.  See attached PDF file.

Glen Spidal
Hillsboro Oregon USA
PH: 503-681-9786  FX: 503-615-2936
www.cybercorpinc.com

[-- Attachment #1.2: Type: text/html, Size: 926 bytes --]

[-- Attachment #2: fhlsnet.pdf --]
[-- Type: application/pdf, Size: 19864 bytes --]

^ permalink raw reply	[flat|nested] 145+ messages in thread
* Newbie question
@ 2002-12-02 18:23 Brian Waite
  2002-12-02 18:55 ` Russ Dill
  0 siblings, 1 reply; 145+ messages in thread
From: Brian Waite @ 2002-12-02 18:23 UTC (permalink / raw)
  To: linux-mtd

Hi, 
I am very new to the MTD world and I had a quick question that may rank in the 
RTFM land, but I am doing that and not finding an answer. I have a board that 
has 2-2x16 128 Mbit Intel StrataFLASHes side by side that I want to run with 
the MTD layer. It looks like the cfi_cmdset_001.c will work except I have to 
issue commands to both FLASH chips at the same time. Has anyone implimented 
something like this? Is there some documentation other than the infradead 
site? As long as this is up to date I am happy, but I wasn't convinced it is 
fully up-to-date. I am coming the archives so even a quick subject line 
pointer would be great. 
Thanks 
Brian Waite

^ permalink raw reply	[flat|nested] 145+ messages in thread
* CVS Respository failures
@ 2002-11-03 18:51 Noah
  2002-11-04  9:15 ` Newbie Question Louie
  0 siblings, 1 reply; 145+ messages in thread
From: Noah @ 2002-11-03 18:51 UTC (permalink / raw)
  To: netfilter

Just tried to d/l the latest ipfilter from CVS, and got the following
error:

sitz@uberwench:~/src/tmp$ cvs -d
:pserver:cvs@pserver.netfilter.org:/cvspublic co netfilter/userspace
can't create temporary directory /tmp/cvs-serv32524
No space left on device

I'm thinking that since there's space on /my/ system, that the cvs server
is having space issues? =)

--n



^ permalink raw reply	[flat|nested] 145+ messages in thread
* Newbie Question
@ 2002-10-24 21:42 dAvId KeDrOsKy
  2002-10-24 22:15 ` Rudolf Marek
  2002-10-24 23:43 ` Brian Raiter
  0 siblings, 2 replies; 145+ messages in thread
From: dAvId KeDrOsKy @ 2002-10-24 21:42 UTC (permalink / raw)
  To: Linux Assembly Programming List

Hello, 

I have recently started learning x86 assembly and have been programming it in 
Linux with NASM (Netwide Assembler). 

I am trying to write a program that takes a string as input, reverses it and 
calculated its length.  I'm using the stack to do so.  

Here's my problem..  NASM only lets me move the string into a 32-bit register.

e.g.  		mov	EBX, the_string		; move memory address of the_string into EBX

At this point I need to push the register on the stack.  I know I can do:

push EBX
call string_length_procedure

BUT I was wondering how it is possible to push BX instead.  Does BX also hold 
the string in this case, considering the size of the string it isn't that 
big?  If not, is there a way to put the contents of EBX (the string) into BX? 
For the time being I would like to just deal with 16-bit registers because it 
is easier to follow along with the book I am using.

P.s. I am using an already coded procedure that gets the string for me and 
puts it into 'string' in this case.

^ permalink raw reply	[flat|nested] 145+ messages in thread
* Newbie Question
@ 2002-10-22  2:47 William L. Childers
  0 siblings, 0 replies; 145+ messages in thread
From: William L. Childers @ 2002-10-22  2:47 UTC (permalink / raw)
  To: netfilter

All,

	I have a network with 4 computers behind the firewall.  Three of these
are workstations.  The firewall works fine for these.  Here is the fun
part.  

One of the computers is a server with the Windows 2000 Operating System
installed.  It is running IIS, and a mail server.  The SMTP portion of
IIS is configured to send email out on port 1125.  I have DNAT working
for the WEB server and SMTP.  There is, however, an issue with one of
the applications that is running on the web server.  It will not send
email out on port 1125.  The rules that I am trying to get to work are:
## Outgoing SNAT Port 1125 only
$IPTABLES -A PREROUTING -t nat -i $INTERNALIF -p tcp --sport 1125 -j
SNAT --to $MYADDR

$IPTABLES -A FORWARD -i $INTERNALIF -p tcp -d 192.168.0.4 --sport 1125
-j ACCEPT

$INTERNALIF is the Private Interface
$MYADDR is the Public IP Address

192.168.0.4 is the Private IP of the IIS Server 

Thank you in advance for any assistance that you may be able to provide.

Bill





^ permalink raw reply	[flat|nested] 145+ messages in thread
* Newbie question
@ 2002-10-10 20:44 juanba romance gallego
  2002-10-10 23:33 ` Mark Meade
  0 siblings, 1 reply; 145+ messages in thread
From: juanba romance gallego @ 2002-10-10 20:44 UTC (permalink / raw)
  To: linux-mtd

Hello, i have a SBC called wafer5820 which already has
a DOC2000 from M-system. I am trying to detect the
chip following the howto-mtd procedure but the device
seems to be missed. I also have other DOS software
provided by M-system called dinfo.exe and all seems to
be right. it says that i have a Milenium device
plugged into the socket 0 mapped at address d6000. I
also can format the device and all the stuff. I
undertsand that the device should be detected by the
docprobe code. but /var/log/messages only says

No recognised DiskOnChip devices found
Uhmm i am using the modules provided by Mandrake-9.0
which holds a 2.4.19-9 linux kernel.

Any Hint?
Thanks in advanced

=====
Juanba Romance

_______________________________________________________________
Yahoo! Messenger
Nueva versión: Webcam, voz, y mucho más ¡Gratis! 
Descárgalo ya desde http://messenger.yahoo.es

^ permalink raw reply	[flat|nested] 145+ messages in thread
* Newbie Question
@ 2002-01-27 18:59 ` Robert Rusek
  0 siblings, 0 replies; 145+ messages in thread
From: Robert Rusek @ 2002-01-27 18:59 UTC (permalink / raw)
  To: linux-mips

[-- Attachment #1: Type: text/plain, Size: 188 bytes --]

I have been out of the loop for quite a while.  Is there a functional or
completed port of any of the RedHat flavors?  If so how would I go about
getting them?
 
Thanks,
--
Robert Rusek
 

[-- Attachment #2: Type: text/html, Size: 838 bytes --]

^ permalink raw reply	[flat|nested] 145+ messages in thread
* Re: Newbie question...
@ 2001-06-13 15:43 Bartosch Pixa
  0 siblings, 0 replies; 145+ messages in thread
From: Bartosch Pixa @ 2001-06-13 15:43 UTC (permalink / raw)
  To: linux-mips

Julien wrote:
 >
 > Hi...
 >
 > If I remember well, currently r10k are only supported on ip22 boards
 > (O2, etc)... I'm quite pessimistic for your Octane (in the immediate
 > futur). Are you looking for Linux to use it as a full featured os ?
 > linux-mips is still in intensive development (for example, only the
 > Indy
 > XL graphic card is supported, all other machines need a serial console
 > to use them), so if you planned to use it as an Irix replacement, it's
 > to soon  [;-)]
 > If you feel it, and can find enough documentation about IP30 boards,
 > it should be possible to do the port yourself   ;-))
 >
 > hope this answers your question


thx, this is not exactly what i wanted to hear ;)
but i think i'll give it a try, any hint where i should start getting 
into it, like i said i'm quite new to mips ...but i realy want to give
it a try :)

Bartosch Pixa

-- 
Bartosch Pixa, bartosch.pixa@infopark.de
Infopark AG
Kitzingstr. 15, D-12277 Berlin, Germany
Tel +49(0)-30-747.993.0, Fax +49(0)-30-747.993.93
http://www.infopark.de/

^ permalink raw reply	[flat|nested] 145+ messages in thread
* Newbie question...
@ 2001-06-13 13:59 Bartosch Pixa
  2001-06-13 15:07 ` Mat Withers
  2001-06-13 15:14 ` Keith M Wesolowski
  0 siblings, 2 replies; 145+ messages in thread
From: Bartosch Pixa @ 2001-06-13 13:59 UTC (permalink / raw)
  To: linux-mips

Hi

i'm quite new to the mips architecture so sorry if i ask dumb/useless
questions. i just bought a used Octane (IP30 R10K ...) and now i'm 
curious if it's possible to get linux on it ;)
Any help/hints apreciated


Thx in advance

Bartosch Pixa

-- 
Bartosch Pixa, bartosch.pixa@infopark.de
Infopark AG
Kitzingstr. 15, D-12277 Berlin, Germany
Tel +49(0)-30-747.993.0, Fax +49(0)-30-747.993.93
http://www.infopark.de/

^ permalink raw reply	[flat|nested] 145+ messages in thread
* Newbie question
@ 2001-05-24 17:29 Pedro Miguel Semeano
  0 siblings, 0 replies; 145+ messages in thread
From: Pedro Miguel Semeano @ 2001-05-24 17:29 UTC (permalink / raw)
  To: linux-kernel

Hello all,

I'm doing a project in linux, and I'm changing the driver of sym53c8xx (a 
SCSI board) to support Target mode. 

To receive data, we need 2 interrupts. One is for initializing all of the 
structures needed, and the second to send the data to the SCSI layer. What 
happens is that bettwen that two interrupts i can't start sending data, but 
in some cases that happen, and is beyond my control. To start sending data I 
set a bit in a certain register of the chip. 

What i would like to know is how can i to a kind of lock so that I set a 
variable in the first interrupt, and unset it in the second. If the SCSI 
layer trys to send data, I whant to stop before I set the bit of the chip. 
But I don't know how...

Can anybody tel me how to do it?

Pedro Semeano

^ permalink raw reply	[flat|nested] 145+ messages in thread
* strace sysmips support (was: Re: [FIX] sysmips(MIPS_ATMIC_SET, ...) ret_from_sys_call vs. o32_ret_from_sys_call)
@ 2001-02-19 13:11 Wichert Akkerman
  2001-02-19 19:52 ` newbie question Can Altineller
  0 siblings, 1 reply; 145+ messages in thread
From: Wichert Akkerman @ 2001-02-19 13:11 UTC (permalink / raw)
  To: linux-mips

Previously Florian Lohoff wrote:
> From the strace i find
> 
> sysmips(0x7d1, 0x2ac95d24, 0x1, 0)      = 4149

FWIW, I've just put code in strace CVS to decode this properly. Looking
in my (stock Linus) kerneltree I noticed the sys_sysmips code assumes
it can get away with converting an int to a char*, which seems like a
wrong assumption to me..

I don't have my indy up and running at the moment, so the code is
completely untested. Feedback is welcomed :)

Wichert.

-- 
  _________________________________________________________________
 /       Nothing is fool-proof to a sufficiently talented fool     \
| wichert@cistron.nl                  http://www.liacs.nl/~wichert/ |
| 1024D/2FA3BC2D 576E 100B 518D 2F16 36B0  2805 3CB8 9250 2FA3 BC2D |

^ permalink raw reply	[flat|nested] 145+ messages in thread

end of thread, other threads:[~2018-07-25 11:29 UTC | newest]

Thread overview: 145+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-03-20  0:02 Newbie question Sven Johnsson
2007-03-20  3:36 ` Lee Revell
  -- strict thread matches above, loose matches on Subject: below --
2018-07-25  3:12 newbie question Qingyu Song
2018-07-25  3:57 ` Zhenhua Luo
2018-07-25  4:46   ` Qingyu Song
2013-02-19  5:04 horseriver
2012-02-18 10:54 santosh prasad nayak
2012-02-18 15:05 ` Dan Carpenter
2012-02-18 16:52 ` Dan Carpenter
2010-09-23  4:59 Newbie question George Spelvin
2010-09-23  6:29 ` Thomas Hochstein
2010-09-19 23:51 kinley
2010-09-19 23:59 ` Andrew Keller
2010-09-20  0:50   ` kinley
2010-09-20  1:47     ` Imran M Yousuf
2010-09-20  6:55     ` Kevin Ballard
2010-09-20 19:32       ` kinley
2010-09-20  8:31 ` Jakub Narebski
2010-09-20  8:39 ` Alex Riesen
2010-05-20 21:17 newbie question Rich Pixley
     [not found] ` <AANLkTikeGWuCeGVELFipNnA_EQ-UHm4fbTvi6-qBiRBi@mail.gmail.com>
     [not found]   ` <AANLkTikeGWuCeGVELFipNnA_EQ-UHm4fbTvi6-qBiRBi-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2010-05-20 22:18     ` Jérôme Poulin
     [not found] ` <4BF5A6E0.6040703-C65YXLrEp3M@public.gmane.org>
2010-05-20 22:30   ` Ryusuke Konishi
     [not found]     ` <20100521.073026.88488718.ryusuke-sG5X7nlA6pw@public.gmane.org>
2010-05-27 17:40       ` K. Richard Pixley
     [not found]         ` <4BFEAE99.3030100-pBcMlXao8V4@public.gmane.org>
2010-05-28  5:55           ` Jiro SEKIBA
     [not found]             ` <4C00071A.4010508@noir.com>
     [not found]               ` <4C00071A.4010508-pBcMlXao8V4@public.gmane.org>
2010-05-28 21:14                 ` K. Richard Pixley
2010-05-28 21:16                 ` K. Richard Pixley
2009-07-30 18:03 Gergely Buday
2009-07-03 18:39 Alex K
2009-07-03 19:12 ` dloewenherz
2009-07-03 19:22 ` Junio C Hamano
2009-07-04  0:29   ` Sitaram Chamarty
2009-07-06 12:11     ` Michael J Gruber
2007-02-28 15:58 OE and the developing host Hans Henry von Tresckow
2007-02-28 10:09 ` Nicola Ranaldo
2007-02-28 10:28   ` Richard Purdie
2007-02-28 10:31     ` Koen Kooi
2007-02-28 16:27       ` Philip Balister
2007-02-28 20:27         ` Newbie Question Lee Studley
2007-02-28 20:30           ` gerwin van der kruis
2007-02-28 21:10             ` Richard Purdie
2007-02-28 23:44               ` Justin Patrin
2007-03-01  9:20                 ` Patrick Fischer
2007-03-01 14:49           ` Vladislav Grinchenko
2007-01-02 23:46 Newbie question digital tech support
     [not found] ` <20070102234608.47829.qmail-8hg4vH1ahbiB9c0Qi4KiSlZ8N9CAUha/QQ4Iyu8u01E@public.gmane.org>
2007-01-02 23:48   ` Lonnie Mendez
2007-01-03  0:59     ` digital tech support
     [not found]       ` <102047.60641.qm-7JG1krxjdK+B9c0Qi4KiSlZ8N9CAUha/QQ4Iyu8u01E@public.gmane.org>
2007-01-03  7:58         ` Dor Laor
2006-11-21 22:37 Michael Weber
2006-11-22  0:08 ` Dave Wysochanski
2006-11-22  0:22 ` Bernd Zeimetz
2006-08-31 12:55 Eric Benton
2006-06-06  9:41 Kobus Wolvaardt
2006-05-16  7:03 newbie question Li Yang-r58472
2006-05-16  7:09 ` Matthias Kestenholz
2005-09-21 14:43 phess.linux
2005-09-21 14:50 ` Nigel Stephens
2005-09-03 17:16 raphael
2005-09-03 17:36 ` jeff
2005-09-03 20:10   ` Martin Fflores
2005-08-22 15:26 gxkahn
2005-08-12  4:12 Michael
2005-08-12  5:01 ` mehta kiran
2005-05-18 13:38 Newbie question observer
2004-12-23 19:23 Newbie Question David Templer
2004-12-24  6:34 ` aq
2004-12-24 12:29 ` M.A. Williamson
2004-08-12 19:10 Rigler, Steve
2004-08-12 17:51 Anne.Bourgeois
2004-08-12 18:28 ` Jeff Moyer
2004-08-12 18:44   ` Anne.Bourgeois
2004-08-12 19:12     ` Jeff Moyer
2004-08-12 19:28       ` Anne.Bourgeois
2004-08-12 19:31         ` Jeff Moyer
2004-08-12 23:55           ` Ian Kent
2004-08-12 23:54         ` Ian Kent
2004-08-12 23:51       ` Ian Kent
2004-06-08  4:16 mafioso1823
2004-06-08 11:09 ` John A. Sullivan III
2004-04-08 11:57 newbie question M. Ahmad Ijaz
2004-04-08 12:02 ` Antony Stone
2004-04-08 12:32   ` M. Ahmad Ijaz
2004-04-08 12:41     ` Antony Stone
2004-04-08 12:43     ` ro0ot
2004-04-08 12:32   ` Jeffrey Laramie
2004-04-08 12:47     ` Antony Stone
2004-04-08 12:09 ` Frank Gruellich
2004-04-09  4:33   ` M. Ahmad Ijaz
2004-04-08 16:26 ` Alexis
     [not found] <385FE68A-FB2E-11D7-B96A-000393B2CBCE@apple.com>
2003-10-10 14:43 ` Newbie question Arvanitis Kostas
2003-08-25 13:11 newbie question chentschel2
2003-07-16 16:38 [ANNOUNCE] ELKS-0.1.3-pre1 released Miguel Bolanos
2003-07-17  1:43 ` Newbie Question Sérgio Duarte e Silva
2003-07-17 11:02   ` Alan Cox
2003-07-17 11:12     ` Sérgio Duarte e Silva
2003-07-17 11:14       ` Paul Nasrat
2003-07-17 14:55     ` Dan Olson
2003-07-17 15:08       ` Alan Cox
2003-07-17 15:24         ` Dan Olson
2003-07-17 16:32           ` Alan Cox
2003-07-17 23:23       ` Sérgio Duarte e Silva
2003-03-26 17:37 Carlos Cajina
2003-03-26 18:53 ` Joel Newkirk
2003-03-24 15:54 newbie question Scott Melnyk
2003-03-24 16:27 ` Joel Newkirk
2003-03-09 17:21 ayachi gherissi
2003-03-10  2:06 ` Antonino Daplas
     [not found] <Pine.VMS.3.91-2(vms).1030228001923.25337A-100000@cs.felk.cvut.cz>
2003-02-28  0:45 ` Newbie Question Dragan Stancevic
2003-02-27 22:57 dAvId KeDrOsKy
2003-02-27 23:19 ` Dragan Stancevic
2003-02-27 23:26 ` Rudolf Marek
2003-02-27 23:42 ` Robert G. Plantz
2003-02-28  6:28   ` hpr
2003-02-28  0:27 ` Slack Traq
2003-02-24 16:23 Jeffrey Corbit
2003-02-24 16:50 ` Aldo S. Lagana
2003-02-20 14:45 newbie question ljp
2003-02-16  7:04 Newbie question Shankar; Hari
2003-02-16  7:57 ` Joel Newkirk
2003-02-16 22:50   ` Shankar; Hari
2003-01-25 10:24 Newbie Question Adam Tee
     [not found] <20030120105301.22841.47459.Mailman@kashyyyk>
2003-01-20 15:58 ` newbie question regina
2003-01-20 19:02   ` Maciej Soltysiak
2002-12-08 23:37 Newbie question Glen Spidal
2002-12-10 13:09 ` Bart
2002-12-02 18:23 Brian Waite
2002-12-02 18:55 ` Russ Dill
2002-12-02 18:57   ` Brian Waite
2002-11-03 18:51 CVS Respository failures Noah
2002-11-04  9:15 ` Newbie Question Louie
2002-10-24 21:42 dAvId KeDrOsKy
2002-10-24 22:15 ` Rudolf Marek
2002-10-24 23:43 ` Brian Raiter
2002-10-25  3:07   ` Robin Miyagi
2002-10-22  2:47 William L. Childers
2002-10-10 20:44 Newbie question juanba romance gallego
2002-10-10 23:33 ` Mark Meade
2002-01-27 18:59 Newbie Question Robert Rusek
2002-01-27 18:59 ` Robert Rusek
2001-06-13 15:43 Newbie question Bartosch Pixa
2001-06-13 13:59 Bartosch Pixa
2001-06-13 15:07 ` Mat Withers
2001-06-13 15:22   ` Keith M Wesolowski
2001-06-13 15:14 ` Keith M Wesolowski
2001-06-13 21:50   ` mjpento
2001-06-15 12:12     ` Florian Lohoff
2001-06-15 13:31     ` Jan-Benedict Glaw
2001-05-24 17:29 Pedro Miguel Semeano
2001-02-19 13:11 strace sysmips support (was: Re: [FIX] sysmips(MIPS_ATMIC_SET, ...) ret_from_sys_call vs. o32_ret_from_sys_call) Wichert Akkerman
2001-02-19 19:52 ` newbie question Can Altineller
2001-02-20  7:06   ` David Jez
2001-02-20 20:26     ` Mike McDonald
2001-02-20 20:30       ` nick
2001-02-20 20:53       ` Ralf Baechle

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.