Bug#280372: installs IP22 binary on IP32

2004-11-08 Thread Martin Michlmayr
Package: arcboot-installer Version: 1.0 arcboot uses /proc to decide whether to install the IP22 or IP32 binary. Unfortunately, /proc is not mounted in the chroot when arcboot is installed so it will always install the IP22 binary. Below is a patch which works for me. Thiemo, ok to apply? Ind

Bug#280372: installs IP22 binary on IP32

2004-11-09 Thread Frans Pop
On Tuesday 09 November 2004 00:34, Martin Michlmayr wrote: > +# mount proc since arcboot needs it to decide between IP22 and IP32 > +mount -t proc none /target/proc || true Wouldn't it be cleaner to test first if /target/proc was already mounted (with 'mount | grep -q "on /target/proc"')? > apt-

Bug#280372: installs IP22 binary on IP32

2004-11-09 Thread Thiemo Seufer
Frans Pop wrote: > On Tuesday 09 November 2004 00:34, Martin Michlmayr wrote: > > +# mount proc since arcboot needs it to decide between IP22 and IP32 > > +mount -t proc none /target/proc || true > > Wouldn't it be cleaner to test first if /target/proc was already mounted > (with 'mount | grep -q