* [parisc-linux] e2fsprogs available
@ 2000-06-30 19:41 Matt Taggart
2000-07-09 18:42 ` Brian S. Julin
0 siblings, 1 reply; 4+ messages in thread
From: Matt Taggart @ 2000-06-30 19:41 UTC (permalink / raw)
To: parisc-linux
[-- Attachment #1: Type: text/plain, Size: 839 bytes --]
A cross-compiled e2fsprogs is now available at,
ftp://puffin.external.hp.com/pub/parisc/binaries/userspace/e2fsprogs-20000630.t
gz
This is the 1.19-WIP-0527a version of e2fsprogs from sourceforge. Attached is
the build recipe.
I also placed a pseudoroot tarball of Paul Bame's fdisk is at,
ftp://puffin.external.hp.com/pub/parisc/binaries/userspace/fdisk-20000630.tgz
I updated the /dev tarball(in the same directory) to add the scsi device
families. I have placed a version of the nfsroot tarball that includes all of
these updates at,
ftp://puffin.external.hp.com/pub/parisc/binaries/nfsroot/nfsroot-latest.tar.gz
Using the above I was able to natively partition, mke2fs, mount, create files,
execute files, umount, and fsck using the scsi disk in my 712.
Please give it a try.
Thanks,
--
Matt Taggart
taggart@fc.hp.com
[-- Attachment #2: e2fs.recipe --]
[-- Type: text/plain , Size: 500 bytes --]
export CROSSPREFIX=hppa1.1-linux-
export CC=${CROSSPREFIX}gcc
export GCC=${CROSSPREFIX}gcc
export LD=${CROSSPREFIX}gcc
export AS=${CROSSPREFIX}as
export AR=${CROSSPREFIX}ar
export RANLIB=${CROSSPREFIX}ranlib
export STRIP=${CROSSPREFIX}strip
export IMAKECPP=${CROSSPREFIX}cpp
./configure --build=i386-linux \
--host=hppa1.1-linux \
--with-cc=hppa1.1-linux-gcc \
--with-linker=hppa1.1-linux-ld \
--disable-dynamic-e2fsck
make
make install DESTDIR=/home/taggart/puffin/userspace/e2fsprogs/tmp
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [parisc-linux] e2fsprogs available
2000-06-30 19:41 [parisc-linux] e2fsprogs available Matt Taggart
@ 2000-07-09 18:42 ` Brian S. Julin
2000-07-09 18:06 ` willy
2000-07-10 13:59 ` David Huggins-Daines
0 siblings, 2 replies; 4+ messages in thread
From: Brian S. Julin @ 2000-07-09 18:42 UTC (permalink / raw)
To: Matt Taggart; +Cc: parisc-linux
On Fri, 30 Jun 2000, Matt Taggart wrote:
> Using the above I was able to natively partition, mke2fs, mount, create files,
> execute files, umount, and fsck using the scsi disk in my 712.
Verified to work on a 715/64 with the LASI/SCSI driver. Except for the
mounting part, as I don't have a mount binary yet...
Also, in case anyone was wondering, the cross-compiler problems
from ALPHA seem to have been fixed. I've booted an ALPHA-compiled kernel.
I tried compiling a native binutils, but all the binaries cause
a page fault when run, so I must be missing a configure flag or something.
(Why is it that configure --help just never seems to do the trick :( )
Would it be a problem that I installed glibc in the nfsroot tree and
then ln'd my i386's /usr/local/hppa1.1-linux/lib to there?
GCC won't build a native, complains about a missing nss symbol.
--
Brian S. Julin
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [parisc-linux] e2fsprogs available
2000-07-09 18:42 ` Brian S. Julin
@ 2000-07-09 18:06 ` willy
2000-07-10 13:59 ` David Huggins-Daines
1 sibling, 0 replies; 4+ messages in thread
From: willy @ 2000-07-09 18:06 UTC (permalink / raw)
To: Brian S. Julin; +Cc: Matt Taggart, parisc-linux
On Sun, Jul 09, 2000 at 02:42:59PM -0400, Brian S. Julin wrote:
> Verified to work on a 715/64 with the LASI/SCSI driver. Except for the
> mounting part, as I don't have a mount binary yet...
you can use -mount, it's a sash builtin.
> Also, in case anyone was wondering, the cross-compiler problems
> from ALPHA seem to have been fixed. I've booted an ALPHA-compiled kernel.
excellent, that wasn't tested...
> I tried compiling a native binutils, but all the binaries cause
> a page fault when run, so I must be missing a configure flag or something.
> (Why is it that configure --help just never seems to do the trick :( )
> Would it be a problem that I installed glibc in the nfsroot tree and
> then ln'd my i386's /usr/local/hppa1.1-linux/lib to there?
>
> GCC won't build a native, complains about a missing nss symbol.
tried --static-nss?
--
The Sex Pistols were revolutionaries. The Bay City Rollers weren't.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [parisc-linux] e2fsprogs available
2000-07-09 18:42 ` Brian S. Julin
2000-07-09 18:06 ` willy
@ 2000-07-10 13:59 ` David Huggins-Daines
1 sibling, 0 replies; 4+ messages in thread
From: David Huggins-Daines @ 2000-07-10 13:59 UTC (permalink / raw)
To: Brian S. Julin; +Cc: Matt Taggart, parisc-linux
"Brian S. Julin" <bri@mojo.calyx.net> writes:
> Also, in case anyone was wondering, the cross-compiler problems
> from ALPHA seem to have been fixed. I've booted an ALPHA-compiled kernel.
Cool.
> GCC won't build a native, complains about a missing nss symbol.
This is well-known glibc lossage. You need to confiugre glibc with
--enable-static-nss, and then every binary that uses NSS must be
linked with '-lc -lnss_files -lnss_dns -lresolv' (in that order).
--
dhd@linuxcare.com, http://www.linuxcare.com/
Linuxcare. Support for the revolution.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2000-07-10 14:12 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2000-06-30 19:41 [parisc-linux] e2fsprogs available Matt Taggart
2000-07-09 18:42 ` Brian S. Julin
2000-07-09 18:06 ` willy
2000-07-10 13:59 ` David Huggins-Daines
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.