<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[MinimaLinux]]></title>
	<link rel="self" href="http://minimalinux.org/forum/extern.php?action=feed&amp;type=atom"/>
	<updated>2010-09-06T19:17:48Z</updated>
	<generator>PunBB</generator>
	<id>http://minimalinux.org/forum/index.php</id>
		<entry>
			<title type="html"><![CDATA[ttylinux mailing list - ttylinux google group]]></title>
			<link rel="alternate" href="http://minimalinux.org/forum/viewtopic.php?id=438&amp;action=new"/>
			<summary type="html"><![CDATA[<p>I created a ttylinux group <a href="http://groups.google.com/group/ttylinux">http://groups.google.com/group/ttylinux</a> with the intention of using it for a mailing list. If you are interested in a ttylinux mailing list then please join and post messages.</p><p>I&#039;d rather use a standard mail list manager, but someone would need to host it. Is anyone interested in hosting one? If so email me at <a href="mailto:douglas@ttylinux.net">douglas@ttylinux.net</a>.</p>]]></summary>
			<author>
				<name><![CDATA[maurice]]></name>
				<uri>http://minimalinux.org/forum/profile.php?id=246</uri>
			</author>
			<updated>2010-09-06T19:17:48Z</updated>
			<id>http://minimalinux.org/forum/viewtopic.php?id=438&amp;action=new</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[How to build add-ons]]></title>
			<link rel="alternate" href="http://minimalinux.org/forum/viewtopic.php?id=433&amp;action=new"/>
			<summary type="html"><![CDATA[<p>I&#039;ve been looking around for a guide to building add-ons and packages for ttylinux. Is a there a guide? If not, could someone explain the process. What are the pkg-cfg tarballs for? I&#039;d like to add quite a few bits and pieces to ttylinux, its a brilliant little distro. It&#039;d be nice to build up a sizable central repository for it to make it more customizable and configurable for users.</p><p>thanks for all your work</p><p>tom</p>]]></summary>
			<author>
				<name><![CDATA[maurice]]></name>
				<uri>http://minimalinux.org/forum/profile.php?id=3648</uri>
			</author>
			<updated>2010-09-06T01:09:33Z</updated>
			<id>http://minimalinux.org/forum/viewtopic.php?id=433&amp;action=new</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Easier busybox configuration]]></title>
			<link rel="alternate" href="http://minimalinux.org/forum/viewtopic.php?id=437&amp;action=new"/>
			<summary type="html"><![CDATA[<p>Making even minor changes to the busybox configuration in ttylinux can be quite tedious:</p><p>1. The configuration files are locked away inside a tarball, which means making a change involves extracting the tarball, copying the config file over to a busybox source tree, running your favorite flavor of &quot;make config&quot; and changing the settings from there, then copying the resulting config file back into the extracted config directory, and re-archiving the config tarball.</p><p>2. The config folder contains a list of _files which must also be hand-edited to reflect any additions or deletions to the busybox applet list. If you forget this step, it is likely that either the build will fail, or your newly-configured applets won&#039;t be included in the package.</p><br /><p>So I made some changes to the build script that I hope will help relieve these issues:</p><p>Problem #1 is addressed by looking in the user&#039;s ./site/ folder for files named &quot;bb-config-norm&quot; and/or &quot;bb-config-suid&quot;. If either (or both) of these files is present, they will be used instead of the file contained in the cfg-* tarball.</p><p>Problem #2 is addressed by dynamically creating the _files list &quot;on-the-fly&quot; by examining the build-root directory for links to busybox and busybox-suid, and searching the contents of the ./rootfs/ subdirectories of the cfg-* and site folders.</p><p>Using this setup, it is even possible that &quot;./site/bb-config-norm&quot; could be<br />a symbolic link to the .config in an external busybox source tree, so you<br />can run &quot;make config&quot; from there, and then build the ttylinux busybox<br />package as usual, and your changes will be reflected automatically.</p><p>Also, if there is a directory named ./site/rootfs/ any files placed there will be copied into the build-root directory and added to the _files list. If any of these filenames also exist in the config tarball&#039;s rootfs folder, the files in the ./site/rootfs/ folder take precedence. This makes it much easier to make llittle personalized tweaks to the system-wide configuration files, for example customizing your /etc/profile or /etc/inputrc files.</p><p>Be warned that ttylinux requires several of the busybox applets at boot-up, so some care should be taken if you remove any applets from the default configuration.</p><p>You can find the revised version of the ./pkg-bld/bld-busybox-1.16.1.sh script here:<br /><a href="http://jkp.t35.com/bld-busybox-1.16.1.sh">http://jkp.t35.com/bld-busybox-1.16.1.sh</a></p>]]></summary>
			<author>
				<name><![CDATA[Jeff]]></name>
				<uri>http://minimalinux.org/forum/profile.php?id=9</uri>
			</author>
			<updated>2010-09-04T06:32:11Z</updated>
			<id>http://minimalinux.org/forum/viewtopic.php?id=437&amp;action=new</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Running ttylinux in qemu as pair: kernel + img.file (ramdisk optional)]]></title>
			<link rel="alternate" href="http://minimalinux.org/forum/viewtopic.php?id=435&amp;action=new"/>
			<summary type="html"><![CDATA[<p>Hi again. Hope you&#039;ll help me...again ;=)</p><p>I&#039;m trying run ttylinux in qemu/qemu-system-x86_64, using this sintax:<br /></p><div class="codebox"><pre><code>qemu
 -boot c 
 -kernel vmlinuz 
 -append root=/dev/sda1 
 -drive file=filesys,if=scsi,index=0,boot=on</code></pre></div><p><strong>filesys</strong> i got from &quot;ttylinux User Guide&quot; (3.4.5 Manual Installation - Setup and Installation -&gt; Install a ttylinux to Boot with File System on a Hard Drive). Is it right?</p><p>files vmlinuz/filesys was from <strong>ttylinux-x86_64-11.2.iso</strong></p><p>When i run this, i got error:<br /></p><div class="codebox"><pre><code>VFS: Cannot open root device &quot;sda1&quot; or unknown-block(0,0)
Please append a correct &quot;root=&quot; boot option; here are the available partitions:
1600 4194302 hdc driver: ide-cdrom
....</code></pre></div><p>I have to suggestions: <br />1. Kernel doesn&#039;t support SATA interface<br />2. Need ramdisk (--initrd &lt;ramdis_path&gt;)</p><p>Can you give my right direction?</p>]]></summary>
			<author>
				<name><![CDATA[douglas]]></name>
				<uri>http://minimalinux.org/forum/profile.php?id=3544</uri>
			</author>
			<updated>2010-09-04T00:44:49Z</updated>
			<id>http://minimalinux.org/forum/viewtopic.php?id=435&amp;action=new</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[ttylinux-setup help]]></title>
			<link rel="alternate" href="http://minimalinux.org/forum/viewtopic.php?id=436&amp;action=new"/>
			<summary type="html"><![CDATA[<p>Hey, I&#039;m relatively new to ttylinux and need some help.</p><p>I&#039;m interested in learning how distributions are built, so I decided to look at some smaller distros and do it myself. I looked around all the usual ones like Damn Small Linux, tomsrtbt, Tiny Core Linux and some others and eventually settled on ttylinux.</p><p>I&#039;ve just completed my first build of ttylinux (it boots and everything! Whoooo!) and now I&#039;m looking at customising it for my own needs. </p><p>My questions are these: <br />Where abouts is /config/ttylinux-setup called from?<br />What is ttylinux-cdrom doing at the end of the append string in isolinux.cfg?</p><p>Any help would be greatly appreciated!</p><p>Thanks,<br />Henry</p>]]></summary>
			<author>
				<name><![CDATA[douglas]]></name>
				<uri>http://minimalinux.org/forum/profile.php?id=3655</uri>
			</author>
			<updated>2010-09-03T02:04:25Z</updated>
			<id>http://minimalinux.org/forum/viewtopic.php?id=436&amp;action=new</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[usb flash disk revisited]]></title>
			<link rel="alternate" href="http://minimalinux.org/forum/viewtopic.php?id=411&amp;action=new"/>
			<summary type="html"><![CDATA[<p>WARNING:&nbsp; Only follow if you have no fear and will only blame yourself<br />if it doesn&#039;t work out.&nbsp; All I can say is it works for me.</p><p>On my current root/boot the usb flashdisk shows up as sdc;</p><p>root@xena [ ~ ]# dmesg | grep &quot;sdc&quot;<br />sd 10:0:0:0: [sdc] 4014080 512-byte logical blocks: (2.05 GB/1.91 GiB)<br />sd 10:0:0:0: [sdc] Write Protect is off<br />sd 10:0:0:0: [sdc] Mode Sense: 00 00 00 00<br />sd 10:0:0:0: [sdc] Assuming drive cache: write through<br />sd 10:0:0:0: [sdc] Assuming drive cache: write through<br /> sdc: sdc1<br />sd 10:0:0:0: [sdc] Assuming drive cache: write through<br />d 10:0:0:0: [sdc] Attached SCSI removable disk</p><p>Note the &quot;4014080 512-byte logical blocks&quot; part.&nbsp; If I want to speed up<br />dd I require larger block sizes but in the interest of doing things the<br />slow and &#039;safe&#039; way I&#039;ll go with the defaults which will wipe clean the<br />entire disk so make sure you&#039;re putting in the correct sd!!!&nbsp; This will<br />take awhile so this is a good time to have a coffee break.</p><p>1) dd if=/dev/zero of=/dev/sdc count=4014080</p><p>output on my system;</p><p>4014080+0 records in<br />4014080+0 records out<br />2055208960 bytes (2.1 GB) copied, 788.874 s, 2.6 MB/s</p><p>Now that dd is finished;</p><p>2) fdisk /dev/sdc</p><p>You should see something like this;</p><p>Device contains neither a valid DOS partition table, nor Sun, SGI or OSF disklabel<br />Building a new DOS disklabel with disk identifier 0xa02aa50a.<br />Changes will remain in memory only, until you decide to write them.<br />After that, of course, the previous content won&#039;t be recoverable.</p><p>Warning: invalid flag 0x0000 of partition table 4 will be corrected by w(rite)</p><p>WARNING: DOS-compatible mode is deprecated. It&#039;s strongly recommended to<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;switch off the mode (command &#039;c&#039;) and change display units to<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;sectors (command &#039;u&#039;).</p><p>In my case I am going to create only one partition but feel free to make<br />as many as you think you want.&nbsp; If so then I suggest at least the first<br />one be big enough to accomadate the kernel(s) and rootfs(s).</p><p>After creating, activating it committing it to a write &quot;fdisk -l /dev/sdc&quot;<br />reports;</p><p>Disk /dev/sdc: 2055 MB, 2055208960 bytes<br />64 heads, 62 sectors/track, 1011 cylinders<br />Units = cylinders of 3968 * 512 = 2031616 bytes<br />Sector size (logical/physical): 512 bytes / 512 bytes<br />I/O size (minimum/optimal): 512 bytes / 512 bytes<br />Disk identifier: 0xa02aa50a</p><p>&nbsp; &nbsp;Device Boot&nbsp; &nbsp; &nbsp; Start&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;End&nbsp; &nbsp; &nbsp; Blocks&nbsp; &nbsp;Id&nbsp; System<br />/dev/sdc1&nbsp; &nbsp;*&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;1&nbsp; &nbsp; &nbsp; &nbsp; 1011&nbsp; &nbsp; &nbsp;2005793&nbsp; &nbsp;83&nbsp; Linux</p><p>Looking good!</p><p>3) mke2fs /dev/sdc1</p><p>This outputs;</p><p>mke2fs 1.41.12 (17-May-2010)<br />Filesystem label=<br />OS type: Linux<br />Block size=4096 (log=2)<br />Fragment size=4096 (log=2)<br />Stride=0 blocks, Stripe width=0 blocks<br />125440 inodes, 501448 blocks<br />25072 blocks (5.00%) reserved for the super user<br />First data block=0<br />Maximum filesystem blocks=515899392<br />16 block groups<br />32768 blocks per group, 32768 fragments per group<br />7840 inodes per group<br />Superblock backups stored on blocks:<br />&nbsp; &nbsp; &nbsp; &nbsp; 32768, 98304, 163840, 229376, 294912</p><p>Writing inode tables: done<br />Writing superblocks and filesystem accounting information: done</p><p>This filesystem will be automatically checked every 39 mounts or<br />180 days, whichever comes first.&nbsp; Use tune2fs -c or -i to override.</p><p>4) mount /dev/sdc1 /mnt/usbdisk</p><p>5) install -d /mnt/usbdisk/{boot,etc}</p><p>Mount the iso</p><p>6) mount -o loop /mnt/archives/ttylinux/source/ttylinux-i686-11.1.iso /mnt/iso<br />7) install -m644 /mnt/iso/boot/vmlinuz /mnt/usbdisk/boot/vmlinuz-i686<br />8) install -m644 /mnt/iso/boot/filesys.gz /mnt/usbdisk/boot/filesys-i686.gz<br />9) umount /mnt/iso/<br />10) mount -o loop \<br />&nbsp; &nbsp; &nbsp; /mnt/archives/ttylinux/source/ttylinux-x86_64-11.1.iso /mnt/iso<br />11) install -m644 /mnt/iso/boot/vmlinuz /mnt/usbdisk/boot/vmlinuz-x86_64<br />12) install -m644 /mnt/iso/boot/filesys.gz /mnt/usbdisk/boot/filesys-x86_64.gz<br />13) umount /mnt/iso</p><p>&quot;ls -al /mnt/usbdisk/boot/&quot; should report something like this;</p><p>drwxr-xr-x 2 root root&nbsp; &nbsp; 4096 Jun 26 00:12 ./<br />drwxr-xr-x 5 root root&nbsp; &nbsp; 4096 Jun 26 00:03 ../<br />-rw-r--r-- 1 root root 2519428 Jun 26 00:08 filesys-i686.gz<br />-rw-r--r-- 1 root root 2969607 Jun 26 00:12 filesys-x86_64.gz<br />-rw-r--r-- 1 root root 4352736 Jun 26 00:07 vmlinuz-i686<br />-rw-r--r-- 1 root root 4519968 Jun 26 00:12 vmlinuz-x86_64</p><p>Big kernels by the way.&nbsp; ;-)</p><p>Now the fun begins.&nbsp; I&#039;ll have step 14 all set below the 14) part to<br />facillitate cutting and pasting;</p><p>14)</p><p>cat &gt; /mnt/usbdisk/etc/lilo.conf &lt;&lt; &quot;EOF&quot;<br />disk=/dev/sdc bios=0x80<br />boot = /dev/sdc<br />map=/mnt/usbdisk/boot/map<br />large-memory<br />lba32<br />compact<br />prompt<br />timeout = 1200<br />image = /mnt/usbdisk/boot/vmlinuz-i686<br />&nbsp; root = /dev/ram0<br />&nbsp; initrd = /mnt/usbdisk/boot/filesys-i686.gz<br />&nbsp; label = ttylinux32<br />&nbsp; read-only<br />image = /mnt/usbdisk/boot/vmlinuz-x86_64<br />&nbsp; root = /dev/ram0<br />&nbsp; initrd = /mnt/usbdisk/boot/filesys-x86_64.gz<br />&nbsp; label = ttylinux64<br />&nbsp; read-only<br />EOF</p><p>15) lilo -C /mnt/usbdisk/etc/lilo.conf</p><p>should output;</p><p>Added ttylinux32 *<br />Added ttylinux64</p><p>16) umount /mnt/usbdisk</p><p>Let&#039;s see if it worked.&nbsp; Be back after trying both.</p><p>Meanwhile back at the ranch;</p><p>BINGO!!!&nbsp; They both booted up and I successfully logged in as user root.</p><p>I am just too awesome.&nbsp; Hm.&nbsp; How much am I getting paid for this?&nbsp; ;-)</p><p>Life is good,<br />Maurice</p>]]></summary>
			<author>
				<name><![CDATA[LocalHero]]></name>
				<uri>http://minimalinux.org/forum/profile.php?id=4</uri>
			</author>
			<updated>2010-09-02T19:35:43Z</updated>
			<id>http://minimalinux.org/forum/viewtopic.php?id=411&amp;action=new</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[udev and makding new device nodes]]></title>
			<link rel="alternate" href="http://minimalinux.org/forum/viewtopic.php?id=434&amp;action=new"/>
			<summary type="html"><![CDATA[<p>I have some USB sensors I&#039;m hooking up.</p><p>Though these sensors show up just fine in the appropriate places in /proc and /sys, no device nodes in /dev are created (as far as I can tell).</p><p>I assume this is because the device node creation rules normally in rules.d have been stripped out?</p><p>What is the expected practice for ttylinux for accomplishing this?&nbsp; Should I figure out the major/minor device numbers that my sensors use, then use mknod in an add-on script to add these to base filesystem?&nbsp; </p><p>Thanks,<br />Greg</p>]]></summary>
			<author>
				<name><![CDATA[maurice]]></name>
				<uri>http://minimalinux.org/forum/profile.php?id=3510</uri>
			</author>
			<updated>2010-08-31T19:20:50Z</updated>
			<id>http://minimalinux.org/forum/viewtopic.php?id=434&amp;action=new</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[suitable archiving and compression for ttylinux]]></title>
			<link rel="alternate" href="http://minimalinux.org/forum/viewtopic.php?id=429&amp;action=new"/>
			<summary type="html"><![CDATA[<p>Hey All ... especially Douglas!</p><p>I propose that future releases of ttylinux disable archiving and compression in busybox in favour of the actual supported and more acceptable applications.&nbsp; Other then tar and bxip2 which are requirements for ttylinux&#039;s packaging scheme they could be addon packages although I am inclined to argue that all of them - xz has become the compression of choice here for the little compression I actually use - should be part and parcel of the ttylinux distribution given the off and on flakiness of the busybox&#039;s replication of these applications.</p><p>I have taken the liberty of experimenting with the idea and it cost me less than 850k to add tar-1.23, bzip2-1.0.5, gzip-1.4 and xz-4.999.9beta into the mix.&nbsp; Given the additional functionality it affords ttylinux I am concluding it is a very small price to pay.</p><p>Life is good,<br />Maurice</p>]]></summary>
			<author>
				<name><![CDATA[maurice]]></name>
				<uri>http://minimalinux.org/forum/profile.php?id=4</uri>
			</author>
			<updated>2010-08-31T18:23:22Z</updated>
			<id>http://minimalinux.org/forum/viewtopic.php?id=429&amp;action=new</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Problem building the last (?) ttylinux on mandriva]]></title>
			<link rel="alternate" href="http://minimalinux.org/forum/viewtopic.php?id=426&amp;action=new"/>
			<summary type="html"><![CDATA[<p>Hi ! I have downloaded the ttylinux-src-mp3.tar.bz2 from the website, extracted it and tried to start the build process. I started by the cross-compiler, make setup and the download worked fine. However, the next steps does not work :</p><p>[curis@info124 cross-tools-2.11-2.6.30.5]$ make x86_64</p><p>Building cross-development tool chain.<br />&nbsp; Host: i586-mandriva-linux-gnu<br />Target: x86_64-generic-linux-gnu<br /> Tools: binutils-2.20 gcc-4.3.4 [gmp-4.3.2, mpfr-2.4.2]<br /> GLIBC: glibc-2.11<br />Kernel: x86_64 linux-2.6.30.5</p><p>../_scripts/ttylinux-linux-gnu.sh: line 1402: ${XBT_TARGET_DIR}/_log.1.binutils: ambiguous redirect</p><p>[curis@info124 cross-tools-2.11-2.6.30.5]$ make i686</p><p>Building cross-development tool chain.<br />&nbsp; Host: i586-mandriva-linux-gnu<br />Target: i686-generic-linux-gnu<br /> Tools: binutils-2.20 gcc-4.3.4 [gmp-4.3.2, mpfr-2.4.2]<br /> GLIBC: glibc-2.11<br />Kernel: i386 linux-2.6.30.5</p><p>../_scripts/ttylinux-linux-gnu.sh: line 1402: ${XBT_TARGET_DIR}/_log.1.binutils: ambiguous redirect</p><p>(so it does not seem to be an issue with the fact I have a 32 bit linux on the building environnement). Here a few informations about the host :</p><p>[curis@info124 cross-tools-2.11-2.6.30.5]$ uname -a<br />Linux info124 2.6.22.18-desktop586-1mdv #1 SMP Mon Feb 11 12:21:41 EST 2008 i686 Intel(R) Core(TM)2 Duo CPU&nbsp; &nbsp; &nbsp;E4400&nbsp; @ 2.00GHz GNU/Linux</p><p>[curis@info124 cross-tools-2.11-2.6.30.5]$ cat /etc/mandriva-release <br />Mandriva Linux release 2008.0 (Official) for i586</p><p>[curis@info124 cross-tools-2.11-2.6.30.5]$ bash --version<br />GNU bash, version 3.2.17(2)-release (i586-mandriva-linux-gnu)<br />Copyright (C) 2005 Free Software Foundation, Inc.</p><p>(by the way, creating USB images from the ISO works fine, however I&#039;m afraid I need additional kernel modules to access Reiser-FS file systems so I can&#039;t afford the build step...)</p><p>Thanks for any help</p><p>PS : I&#039;ve seen the post on redirection problem in Ubuntu, but since I do not use Ubuntu and it occurs at a different place, I think it is a different one...</p>]]></summary>
			<author>
				<name><![CDATA[kiralylany]]></name>
				<uri>http://minimalinux.org/forum/profile.php?id=3629</uri>
			</author>
			<updated>2010-08-31T14:40:10Z</updated>
			<id>http://minimalinux.org/forum/viewtopic.php?id=426&amp;action=new</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[New add-ons page]]></title>
			<link rel="alternate" href="http://minimalinux.org/forum/viewtopic.php?id=432&amp;action=new"/>
			<summary type="html"><![CDATA[<p>After far too long, I finally got around to updating my add-ons page for ttylinux.</p><p>Most of the programs are updated versions from my old ttylinux 8.0 add-ons, but they have been updated to the latest release versions and packaged for ttylinux 11.2.</p><p>There are also a few notable additions:&nbsp; &quot;btpd&quot;, an amazingly small bit-torrent client, &quot;polarssl&quot; (a small SSL/TLS and cryptography library) along with SSL-enabled versions of the &quot;mini_httpd&quot; webserver and the &quot;curl&quot; web client.</p><p>The compiled binaries are only for i686, the build scripts might (or might not) work for other platforms. I&#039;d be happy to hear any success/failure you have with them, and of course any other feedback is welcome too.</p><p>You can find it all right here:&nbsp; <a href="http://jkp.t35.com/">http://jkp.t35.com/</a></p><br /><p>Enjoy!</p><p> - Jeff</p>]]></summary>
			<author>
				<name><![CDATA[LocalHero]]></name>
				<uri>http://minimalinux.org/forum/profile.php?id=9</uri>
			</author>
			<updated>2010-08-29T16:12:06Z</updated>
			<id>http://minimalinux.org/forum/viewtopic.php?id=432&amp;action=new</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Problem exporting headers when building cross-tool chain]]></title>
			<link rel="alternate" href="http://minimalinux.org/forum/viewtopic.php?id=431&amp;action=new"/>
			<summary type="html"><![CDATA[<p>I have a fresh install (plus all packages listed in How_to_build_ttylinux.txt) of Fedora 13 x86_64 that I&#039;m using as a host system to build ttylinux.&nbsp; I downloaded ttylinux-src-mp3.tar.bz2, extracted it and followed the instructions.&nbsp; It worked perfectly until I ran &#039;make i486&#039;.&nbsp; It follows through until &#039;Exporting i386 kernel header files&#039;, and then I get this in the _log.3.kernel_headers.</p><div class="codebox"><pre><code>Finding, uncompressing, untarring linux-2.6.20
Using /home/dinzdale/ttylinux_build/ttylinux-src-mp3/cross-tools-2.9-2.6.20/_pkg-src/linux-2.6.20.tar.bz2
Exporting i386 kernel header files (i486-generic-linux-gnu).
scripts/basic/fixdep.c: In function &#039;traps&#039;:
scripts/basic/fixdep.c:371: warning: dereferencing type-punned pointer will break strict-aliasing rules
scripts/basic/fixdep.c:373: warning: dereferencing type-punned pointer will break strict-aliasing rules
scripts/unifdef.c:209: error: conflicting types for &#039;getline&#039;
/usr/include/stdio.h:673: note: previous declaration of &#039;getline&#039; was here
make[2]: *** [scripts/unifdef] Error 1
make[1]: *** [headers_install] Error 2</code></pre></div><p>Anyone have any idea what&#039;s going on here?&nbsp; I&#039;m new to building systems, so I might be missing something simple.</p>]]></summary>
			<author>
				<name><![CDATA[LocalHero]]></name>
				<uri>http://minimalinux.org/forum/profile.php?id=3635</uri>
			</author>
			<updated>2010-08-28T22:44:27Z</updated>
			<id>http://minimalinux.org/forum/viewtopic.php?id=431&amp;action=new</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[wget problem on ttylinux in VirtualBox OSE]]></title>
			<link rel="alternate" href="http://minimalinux.org/forum/viewtopic.php?id=430&amp;action=new"/>
			<summary type="html"><![CDATA[<p>I&#039;m running ttylinux-i686-11.2.iso as a VM in VirtualBox OSE on Ubuntu 10.04 x64.&nbsp; I&#039;m attempting to download Bitcoin using ...</p><div class="codebox"><pre><code>wget http://downloads.sourceforge.net/project/bitcoin/Bitcoin/bitcoin-0.3.10/bitcoin-0.3.10-linux.tar.gz</code></pre></div><p>The download reaches ~40% and then fails, reporting &quot;short write&quot;.&nbsp; It&#039;s only a 7.9MB file.&nbsp; I&#039;ve given the VM far more memory (1GB) and disk (300MB) than it should need.&nbsp; I&#039;ve explicitly tried a few of the mirrors, and they all failed at ~40%.</p><p>What am I missing?</p><p>Edit: I did try extracting, with no joy.</p><p>Edit2: I forgot to mention that the host is running a VPN, and the VM is NATed.</p>]]></summary>
			<author>
				<name><![CDATA[ichi]]></name>
				<uri>http://minimalinux.org/forum/profile.php?id=3636</uri>
			</author>
			<updated>2010-08-22T21:46:25Z</updated>
			<id>http://minimalinux.org/forum/viewtopic.php?id=430&amp;action=new</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Problem with the tar version of ttylinux]]></title>
			<link rel="alternate" href="http://minimalinux.org/forum/viewtopic.php?id=428&amp;action=new"/>
			<summary type="html"><![CDATA[<p>Yet another problem discovered trying to use ttylinux as a backup solution... The tar version of ttylinux (busybox tar if I correctly understood) stops while untarring the tar (generated by GNU-tar of the Mandriva 2010) because of accentuated characters in extracted file names.<br />The tar is made from a NTFS partition and rewrote on a NTFS partition mounted with NTFS-3G, I&#039;m not quite sure which coding is used, but the problem is clearly due to accents in some systems files of Windows XP [&quot;Start&quot; folder is called &quot;Menu Démarrer&quot; in the French version], so I definitely must keep these accents!<br />Since it works perfectly when using GNU tar, I think the ttylinux-tar has the problem...<br />Any hints if there is a way to correct this? Thanks...</p>]]></summary>
			<author>
				<name><![CDATA[douglas]]></name>
				<uri>http://minimalinux.org/forum/profile.php?id=3629</uri>
			</author>
			<updated>2010-08-21T03:35:05Z</updated>
			<id>http://minimalinux.org/forum/viewtopic.php?id=428&amp;action=new</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Unable adding new programs on the ttylinux x86_64 ramdisk]]></title>
			<link rel="alternate" href="http://minimalinux.org/forum/viewtopic.php?id=427&amp;action=new"/>
			<summary type="html"><![CDATA[<p>Hi ! I try to use ttylinux to create an PC configuration &amp; installation USB key which would easily prepare student computers with both XP and linux.<br />I first used the x686 ttylinux, and since I need a few additional softwares to do the process, I did the following steps:<br />1) mounting the ISO image with the loop device<br />2) copy boot/filesys.gz on the harddisk &amp; gunzip it<br />3) unmounting the ISO image<br />4) mounting the filesys with the loop device<br />5) adding required software, pre-compiled [source : Mandriva 2008 32 bits] : sfdisk, grub, mkntfs, mkreiserfs and libraries: libncurses, libntfs.<br />&nbsp; &nbsp; adding also the ntfs-3g add-on<br />6) compress the filesys [gzip -c filesys &gt; filesys.gz]<br />7) replace on the (working) USB key with ttylinux the /boot/filesys.gz by the new version</p><p>It worked perfectly. Unfortunately, the windows tar.bz2 image is too big (2.3 Go) and cannot be accesses. So I tried to do the same thing with the x86_64 version of ttylinux, using softs from mandriva 2010.1 64 bits.<br />But it does not work, with very strange messages:<br /># ls /sbin/<br />(...) sfdisk (...)</p><p>so /sbin/sfdisk is present<br /># sfdisk<br />bash: /sbin/sfdisk: no such file or directory</p><p>Same thing with mkntfs, in /usr/sbin</p><p>It looks like the filesystem directory get modified but the file is physically absent or something similar...<br />Does anybody have any hint about such an issue? How is it possible to modify the x86_64 ramdisk image?</p><p>Many thanks in advance... For the moment, I managed to use the 32-bits version to partition the disk with sfdisk, format it with mkntfs/mkreiserfs/mke2fs... and the 64-bit version for untaring the partitions images... But it is definitely not the best practical way, I would like to do both on a single ttylinux...</p>]]></summary>
			<author>
				<name><![CDATA[douglas]]></name>
				<uri>http://minimalinux.org/forum/profile.php?id=3629</uri>
			</author>
			<updated>2010-08-20T03:13:10Z</updated>
			<id>http://minimalinux.org/forum/viewtopic.php?id=427&amp;action=new</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Unable to build ttylinux on Ubuntu 10.04 LTS]]></title>
			<link rel="alternate" href="http://minimalinux.org/forum/viewtopic.php?id=424&amp;action=new"/>
			<summary type="html"><![CDATA[<p>Hello,</p><p>I&#039;m trying to build ttylinux. <br />I successfully prepared the crosscompiler :</p><div class="codebox"><pre><code>...ttylinux-src-mp3/cross-tools-2.11-2.6.30.5/_scripts# ./test-i686.sh 
Checking simple i686-generic-linux-gnu target C cross compile... Seems OK.
Checking simple i686-generic-linux-gnu target C++ cross compile... Seems OK.</code></pre></div><p>But the make dist doesn&#039;t start correctly :<br /></p><div class="codebox"><pre><code>...ttylinux-src-mp3# make dist

Remove the ttylinux build.
=&gt; Removing development build directories.
=&gt; Removing boot CD configuration.
=&gt; Removing binary packages.
=&gt; Removing build logs.

./ttylinux.dist-config.sh: 86: Syntax error: redirection unexpected
make: *** [init] Erreur 2</code></pre></div><p>This is this line who has a problem :<br /></p><div class="codebox"><pre><code>read TTYLINUX_CPU TTYLINUX_PLATFORM TTYLINUX_GL_ARCH &lt;&lt;&lt;${TTYLINUX_TARGET//:/ }</code></pre></div><p>Has somebody an idear ?</p><p>Thank you in advance !</p><p>Best regards</p><p>Piziwate</p>]]></summary>
			<author>
				<name><![CDATA[piziwate]]></name>
				<uri>http://minimalinux.org/forum/profile.php?id=3620</uri>
			</author>
			<updated>2010-08-19T17:27:29Z</updated>
			<id>http://minimalinux.org/forum/viewtopic.php?id=424&amp;action=new</id>
		</entry>
</feed>
