WelcomeWelcome | FAQFAQ | DownloadsDownloads | WikiWiki

Author Topic: Does embed boot code work in tc 2.2?  (Read 2058 times)

Offline bigpcman

  • Hero Member
  • *****
  • Posts: 719
Does embed boot code work in tc 2.2?
« on: August 25, 2009, 11:56:51 AM »
tc 2.2
I'm using the the embed boot code and "df" works fine. But it does show a tmpfs file system present.

grub entry
Code: [Select]
title Tinycore Linux
root=(hd0,2)
kernel /bzImage tinycore quiet waitusb=5 norestore tce=sda2 embed pause
initrd /tinycore.gz
boot

Code: [Select]
tc@box:/$ df
Filesystem                Size      Used Available Use% Mounted on
tmpfs                   501.3M         0    501.3M   0% /dev/shm
/dev/sda2                 1.1G    744.6M    292.8M  72% /mnt/sda2
/dev/loop0              952.0K    952.0K         0 100% /tmp/tcloop/bash
/dev/loop1              360.0K    360.0K         0 100% /tmp/tcloop/firewall-2.6.29.1-tinycore
/dev/loop2                2.2M      2.2M         0 100% /tmp/tcloop/openssl-0.9.8h
/dev/loop3              404.0K    404.0K         0 100% /tmp/tcloop/wget
/dev/sda1                 2.6G    779.2M      1.9G  29% /mnt/sda1
big pc man

Offline SvOlli

  • Full Member
  • ***
  • Posts: 193
  • Linux Developer
Re: Does embed boot code work in tc 2.2?
« Reply #1 on: August 25, 2009, 12:57:22 PM »
From your output I'd say: yes it does. Note, that there's no '/' fs mounted. The tmpfs you see is mounted on '/dev/shm' for applications using shared memory segments.

Try 'df /' to be sure.

Greetings,
SvOlli

Offline bigpcman

  • Hero Member
  • *****
  • Posts: 719
Re: Does embed boot code work in tc 2.2?
« Reply #2 on: August 25, 2009, 08:50:24 PM »
From your output I'd say: yes it does. Note, that there's no '/' fs mounted. The tmpfs you see is mounted on '/dev/shm' for applications using shared memory segments.

Try 'df /' to be sure.

Greetings,
SvOlli

OK, I guess you are right.
Code: [Select]
tc@box:/$ sudo df /
Filesystem           1K-blocks      Used Available Use% Mounted on
tc@box:/$ df /
Filesystem                Size      Used Available Use% Mounted on
tc@box:/$
big pc man