Re: 3.0 CD has missing files!

2002-07-29 Thread Kaz Sasayama
Brett E. Wynkoop wrote:

Greeting-
 I just downloaded the 3.0 disk 1 CD image from a mirror site and burned it.
I then went to the doc/install directory to find that all the files were 
zero legnth!
  


Does your system support the Rock Ridge extensions? It seems your system
mounted the disc without it and just failed to recognize the symbolic links.

-- 
"Free software is not for free."
Kaz Sasayama [EMAIL PROTECTED]; Screen Name: kazssym
Hyper Linux Systems (Hypercore Software Design, Ltd.)
URL:http://www.hypercore.co.jp/


smime.p7s
Description: S/MIME Cryptographic Signature


Re: debian 2.2r7 iso images on cdimage ?

2002-07-18 Thread Kaz Sasayama
Philip Hands wrote:

Assuming that the latest debian_cd still builds potato CDs, then they
should be done in a few hours.
  


Have you finished then?

I don't see www.debian.org/CD/ updated for 2.2r7 yet, and now I wonder
when I can start making official 2.2r7 CDs.

-- 
"Free software is not for free."
Kaz Sasayama [EMAIL PROTECTED]; Screen Name: kazssym
Hyper Linux Systems (Hypercore Software Design, Ltd.)
URL:http://www.hypercore.co.jp/


smime.p7s
Description: S/MIME Cryptographic Signature


Re: Please test this woody cd image

2002-04-16 Thread Kaz Sasayama

Eduard Bloch wrote:

- Is bf2.4 the only kernel with USB support?


No, vanilla has USB support too.


Yes, it has, but it seems that the modules are not loaded by default on 
vanilla unlike bf2.4.

-- 
Free software is not for free.
Kaz Sasayama [EMAIL PROTECTED]; Screen Name: kazssym
Hyper Linux Systems (Hypercore Software Design, Ltd.)
URL:http://www.hypercore.co.jp/




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




Re: How about the isolinux boot loader for i386 CDs?

2001-10-07 Thread Kaz Sasayama

I plan to make some experiments about isolinux soon, but someone wrote 
me that isolinux is somewhat broken on some machines, so the integration 
might be quite conservative in a short term.

Raphael Hertzog wrote:

 It's almost never too late, however it won't happen if nobody does the
 necessary changes (someone should start by packaging that isolinux stuff).
 And then if someone can integrate it into debian-cd I'll happily apply
 that patch ... 


BTW, does anyone know if mkisofs supports El Torito booting with HD 
emulation?



-- 
Free software is not for free.
Kaz Sasayama [EMAIL PROTECTED]; Screen Name: kazssym
Hyper Linux Systems (Hypercore Software Design, Ltd.)
URL:http://www.hypercore.co.jp/


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




patch for tools/scansources

2001-03-20 Thread Kaz Sasayama
I made these changes to CVS tools/scansources to make source images
with non-US.  Are these changes correct?
-- 
"Free software is not for free."
Kaz Sasayama [EMAIL PROTECTED]
Hyper Linux Systems (Hypercore Software Design, Ltd.)
URL:http://www.hypercore.co.jp/

Index: tools/scansources
===
RCS file: /cvs/debian-boot/debian-cd/tools/scansources,v
retrieving revision 1.5
diff -u -r1.5 scansources
--- tools/scansources   2001/02/27 01:01:40 1.5
+++ tools/scansources   2001/03/21 02:04:56
@@ -44,11 +44,13 @@
if [ -n "$NONUS" -a "$CODENAME" != "slink" ]; then
if [ -d "pool/non-US/$SECT" ]; then
dpkg-scansources pool/non-US/$SECT \
-dists/$CODENAME/$SECT/source/Sources
+dists/$CODENAME/non-US/$SECT/source/Sources
fi
for DIST in $DISTSNONUS; do
+   if [ -d "dists/$DIST/non-US/$SECT" ]; then
dpkg-scansources dists/$DIST/non-US/$SECT/source \
-dists/$CODENAME/$SECT/source/Sources
+dists/$CODENAME/non-US/$SECT/source/Sources
+   fi
done
gzip --best dists/$CODENAME/non-US/$SECT/source/Sources
fi