Torben Mathiasen wrote:

> I can't seem to find a clean way of getting the drivers outside
> "drivers/scsi" to link _after_ the other low-level drivers.

Can you characterize the problem in more detail for me?  That is,
exactly what link order constraints you are trying to obey.

I am thinking about this:

    # Makefile
    link-first := drivers/scsi/foo.o drivers/i2o/%o drivers/scsi/bar.o
    link-last :=

    DRIVERS := \
        $(filter $(link-first), $(DRIVERS)) \
        $(filter-out $(link-first) $(link-last), $(DRIVERS)) \
        $(filter $(link-last), $(DRIVERS))

This is just a preliminary thought.  I'd like to know more about the
problem.

Michael Elizabeth Chastain
<mailto:[EMAIL PROTECTED]>
"love without fear"
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
Please read the FAQ at http://www.tux.org/lkml/

Reply via email to