Ali Mashtizadeh | 1 Apr 2010 07:43
Picon

AHCI Driver on ICH7 (27c08086) Chipset

Hi Everyone,

I have a new motherboard with an ICH7 chipset (G41) and the ata driver
recognizes it as ATA_I82801GB_S1 (PCI ID 27c08086), but this card does
not seem to work with the AHCI. Can anyone point me to why this is the
case? I really need NCQ working for this machine.

Thanks,
--

-- 
Ali Mashtizadeh
علی مشتی زاده
_______________________________________________
freebsd-hackers <at> freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to "freebsd-hackers-unsubscribe <at> freebsd.org"

Alexander Motin | 1 Apr 2010 12:51
Picon
Favicon

Re: AHCI Driver on ICH7 (27c08086) Chipset

Ali Mashtizadeh wrote:
> I have a new motherboard with an ICH7 chipset (G41) and the ata driver
> recognizes it as ATA_I82801GB_S1 (PCI ID 27c08086), but this card does
> not seem to work with the AHCI. Can anyone point me to why this is the
> case? I really need NCQ working for this machine.

Most of ICH7 chipsets (especially on cheap boards) do not support AHCI
mode. Only ICH7R and ICH7M do, if BIOS is so kind to enable it.

--

-- 
Alexander Motin
_______________________________________________
freebsd-hackers <at> freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to "freebsd-hackers-unsubscribe <at> freebsd.org"

Eugene Grosbein | 1 Apr 2010 11:12
Picon

Re: AHCI Driver on ICH7 (27c08086) Chipset

Ali Mashtizadeh wrote:
> Hi Everyone,
> 
> I have a new motherboard with an ICH7 chipset (G41) and the ata driver
> recognizes it as ATA_I82801GB_S1 (PCI ID 27c08086), but this card does
> not seem to work with the AHCI. Can anyone point me to why this is the
> case? I really need NCQ working for this machine.

http://www.intel.com/support/chipsets/imst/sb/cs-012304.htm
In short: ICH7R and ICH7M both have AHCI support but ICH7 does not.

Eugene Grosbein
_______________________________________________
freebsd-hackers <at> freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to "freebsd-hackers-unsubscribe <at> freebsd.org"

Oliver Fromme | 1 Apr 2010 14:01
Picon

Re: Newbie question: kernel image a dynamically linked binary?

Hi,

Please don't crosspost to many lists.  This topic is probably
suitable for hackers <at>  but not for the other lists.

Daniel Rodrick <daniel.rodrick <at> gmail.com> wrote:
 > I'm a newbie and coming from Linux background, and am trying to learn
 > FreeBSD now. The first thing I find a little confusing is that the
 > final FreeBSD kernel image is shown as a DYNAMICALLY LINKED binary:
 > 
 > $
 > $ pwd
 > /boot/kernel
 > $
 > $ file kernel
 > kernel: ELF 32-bit LSB executable, Intel 80386, version 1 (FreeBSD),
 > dynamically linked (uses shared libs), not stripped
 > $
 > 
 > How can the kernel image use shared libraries? And which ones does it
 > use, if any?
 > 
 > Also, I cannot find out the libraries the image uses using the
 > traditional ldd command:
 > 
 > $ ldd kernel
 > kernel:
 > kernel: signal 6
 > $

(Continue reading)

John Baldwin | 1 Apr 2010 14:38
Picon
Favicon

Re: Fwd: mkuzip and/or geom_uzip changes?

On Wednesday 31 March 2010 6:32:09 pm Tim Judd wrote:
> Hi All,
> 
> Just starting to see if I can find other reports.  You all probably
> have had the "more than one pair of eyes looking at a thing is better
> than my eyes alone."  This is why I'm writing now, as I'm starting the
> discovery.
> 
> Let me background this a little bit.  I only started looking into this
> because mkuzip and it's counterpart, geom_uzip are throwing errors on
> FreeBSD8 i386
> 
> 
> scenario (/etc/src.conf in effect, removing *LOTS* of stuff with knobs):
>   make DESTDIR=/home/small8 installworld installkernel distribution
>   mv /home/small8/boot /home/small8-boot/
>   makefs -t ffs /home/small8/usr.img /home/small8/usr/
>   mkuzip -o /home/small8/usr.uzip /home/small8/usr.img                  [*]
>   chflags -R noschg /home/small8/usr/*
>   rm -rf /home/small8/usr/* /home/small8/usr.img
>   ee /home/small8/etc/rc.d/mountcritlocal
>           [**]
>   makefs -t ffs /home/small8-boot/mfsroot /home/small8/
>   gzip --best /home/small8-boot/mfsroot
>   ee /home/small8-boot/boot/loader.conf
>           [***]
>   rm /home/small8-boot/boot/kernel/*.symbols
>   gzip --best /home/small8-boot/boot/kernel/kernel
>   mkisofs -U -J -r -V "FreeBSD8" -b boot/cdboot -no-emul-boot
> -iso-level 4 -o /home/small8.iso /home/small8-boot/
(Continue reading)

John Baldwin | 1 Apr 2010 15:37
Picon
Favicon

Re: Fwd: mkuzip and/or geom_uzip changes?

On Thursday 01 April 2010 8:38:38 am John Baldwin wrote:
> > 2) even with geom_uzip module and it's dependency zlib loaded, i don't
> > get a mdconfig node '/dev/md?.uzip' to appear.
> > 
> > It's been forever since I touched uzip, so I have to ask.
> 
> Do you have a md0 device at all?  I think you want to hack the script to do 
> something like this:
> 
> 	disk=`mdconfig -af /path/to/usr.img`
> 	mount -r /dev/$disk.uzip /usr

To clarify, I would hack this into an /etc rc script, not in the script
embedded into the uzip image.

--

-- 
John Baldwin
_______________________________________________
freebsd-hackers <at> freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to "freebsd-hackers-unsubscribe <at> freebsd.org"

Tim Judd | 1 Apr 2010 16:48
Picon

Re: Fwd: mkuzip and/or geom_uzip changes?

On 4/1/10, John Baldwin <jhb <at> freebsd.org> wrote:
> On Wednesday 31 March 2010 6:32:09 pm Tim Judd wrote:
>> Hi All,
>>
>> Just starting to see if I can find other reports.  You all probably
>> have had the "more than one pair of eyes looking at a thing is better
>> than my eyes alone."  This is why I'm writing now, as I'm starting the
>> discovery.
>>
>> Let me background this a little bit.  I only started looking into this
>> because mkuzip and it's counterpart, geom_uzip are throwing errors on
>> FreeBSD8 i386
>>
>>
>> scenario (/etc/src.conf in effect, removing *LOTS* of stuff with knobs):
>>   make DESTDIR=/home/small8 installworld installkernel distribution
>>   mv /home/small8/boot /home/small8-boot/
>>   makefs -t ffs /home/small8/usr.img /home/small8/usr/
>>   mkuzip -o /home/small8/usr.uzip /home/small8/usr.img
>> [*]
>>   chflags -R noschg /home/small8/usr/*
>>   rm -rf /home/small8/usr/* /home/small8/usr.img
>>   ee /home/small8/etc/rc.d/mountcritlocal
>>           [**]
>>   makefs -t ffs /home/small8-boot/mfsroot /home/small8/
>>   gzip --best /home/small8-boot/mfsroot
>>   ee /home/small8-boot/boot/loader.conf
>>           [***]
>>   rm /home/small8-boot/boot/kernel/*.symbols
>>   gzip --best /home/small8-boot/boot/kernel/kernel
(Continue reading)

Oliver Fromme | 1 Apr 2010 17:27
Picon

Re: Compiling kernel with gcc43 [SOLVED]

Mario Lobo <lobo <at> bsd.com.br> wrote:
 > [...]
 > It's compiling right now.
 > 
 > I'll post my findings and impressions on results and performance right after 
 > the next reboot.

So, how is it going?  Any benchmarks yet?  I'm curious
if the new gcc version will really make a significant
difference.

Best regards
   Oliver

--

-- 
Oliver Fromme, secnetix GmbH & Co. KG, Marktplatz 29, 85567 Grafing b. M.
Handelsregister: Registergericht Muenchen, HRA 74606,  Geschäftsfuehrung:
secnetix Verwaltungsgesellsch. mbH, Handelsregister: Registergericht Mün-
chen, HRB 125758,  Geschäftsführer: Maik Bachmann, Olaf Erb, Ralf Gebhart

FreeBSD-Dienstleistungen, -Produkte und mehr:  http://www.secnetix.de/bsd

"UNIX was not designed to stop you from doing stupid things,
because that would also stop you from doing clever things."
        -- Doug Gwyn
_______________________________________________
freebsd-hackers <at> freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to "freebsd-hackers-unsubscribe <at> freebsd.org"

(Continue reading)

John Baldwin | 1 Apr 2010 19:04
Picon
Favicon

Re: Fwd: mkuzip and/or geom_uzip changes?

On Thursday 01 April 2010 10:48:07 am Tim Judd wrote:
> On 4/1/10, John Baldwin <jhb <at> freebsd.org> wrote:
> > On Wednesday 31 March 2010 6:32:09 pm Tim Judd wrote:
> >> Hi All,
> >>
> >> Just starting to see if I can find other reports.  You all probably
> >> have had the "more than one pair of eyes looking at a thing is better
> >> than my eyes alone."  This is why I'm writing now, as I'm starting the
> >> discovery.
> >>
> >> Let me background this a little bit.  I only started looking into this
> >> because mkuzip and it's counterpart, geom_uzip are throwing errors on
> >> FreeBSD8 i386
> >>
> >>
> >> scenario (/etc/src.conf in effect, removing *LOTS* of stuff with knobs):
> >>   make DESTDIR=/home/small8 installworld installkernel distribution
> >>   mv /home/small8/boot /home/small8-boot/
> >>   makefs -t ffs /home/small8/usr.img /home/small8/usr/
> >>   mkuzip -o /home/small8/usr.uzip /home/small8/usr.img
> >> [*]
> >>   chflags -R noschg /home/small8/usr/*
> >>   rm -rf /home/small8/usr/* /home/small8/usr.img
> >>   ee /home/small8/etc/rc.d/mountcritlocal
> >>           [**]
> >>   makefs -t ffs /home/small8-boot/mfsroot /home/small8/
> >>   gzip --best /home/small8-boot/mfsroot
> >>   ee /home/small8-boot/boot/loader.conf
> >>           [***]
> >>   rm /home/small8-boot/boot/kernel/*.symbols
(Continue reading)

Tim Judd | 1 Apr 2010 19:14
Picon

Re: Fwd: mkuzip and/or geom_uzip changes?

On 4/1/10, John Baldwin <jhb <at> freebsd.org> wrote:
> On Thursday 01 April 2010 10:48:07 am Tim Judd wrote:
>> On 4/1/10, John Baldwin <jhb <at> freebsd.org> wrote:
>> > On Wednesday 31 March 2010 6:32:09 pm Tim Judd wrote:
>> >> Hi All,
>> >>
>> >> Just starting to see if I can find other reports.  You all probably
>> >> have had the "more than one pair of eyes looking at a thing is better
>> >> than my eyes alone."  This is why I'm writing now, as I'm starting the
>> >> discovery.
>> >>
>> >> Let me background this a little bit.  I only started looking into this
>> >> because mkuzip and it's counterpart, geom_uzip are throwing errors on
>> >> FreeBSD8 i386
>> >>
>> >>
>> >> scenario (/etc/src.conf in effect, removing *LOTS* of stuff with
>> >> knobs):
>> >>   make DESTDIR=/home/small8 installworld installkernel distribution
>> >>   mv /home/small8/boot /home/small8-boot/
>> >>   makefs -t ffs /home/small8/usr.img /home/small8/usr/
>> >>   mkuzip -o /home/small8/usr.uzip /home/small8/usr.img
>> >> [*]
>> >>   chflags -R noschg /home/small8/usr/*
>> >>   rm -rf /home/small8/usr/* /home/small8/usr.img
>> >>   ee /home/small8/etc/rc.d/mountcritlocal
>> >>           [**]
>> >>   makefs -t ffs /home/small8-boot/mfsroot /home/small8/
>> >>   gzip --best /home/small8-boot/mfsroot
>> >>   ee /home/small8-boot/boot/loader.conf
(Continue reading)


Gmane