This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

ASG 7.502 on Toshiba Magnia SG30

I know, I know, this little box hasn't seen any love here in quite a few years, 3 since the last post about a SG20 as far as I saw in my searches.

That being said, it's still a perfect box for running ASG and replacing a standard router for a little more speed and control.  I actually have a couple of these servers and wanted to re-purpose them from their original Red-Hat installs.  For those not familiar with the box, it's a small headless server that was made for SOHO environments as a "all in one" box.  The headless part makes installing an OS on it challenging, and more so because I do not have the 8 pin serial cable for it's console access.

I took a look at shorewall on an Ubuntu 9.10 install and IPCop that was tailored for the SG series and wasn't super impressed with either.  Came across ASG and decided to take a deeper look into what was needed to get it working on my SG30.  Turns out, not much at all needs to be done...

The original install was done on a netbook using a USB to IDE adapter and a USB cd-rom, tried to keep it generic and simple so I wouldn't have any problems.  After I installed it, it took a little tweak in one file to make it boot & become accessible from the WebGUI:

/etc/modules.conf (Modified):

alias eth0 8139too
alias eth1 e100


This was added so that the shutdown command actually powers the box off completely;

/etc/rc.d/rc0.d/S10halt (Modified): (Lines besides those between double remarks are for finding location of addition)
fi


##Added for Toshiba SG LCD panel shutdown
echo -e "\033X"  > /dev/ttyS0
echo -ne "\033"  > /dev/ttyS0
echo -ne "8q"  > /dev/ttyS0
##End of add for Toshiba SG LCD
exec /sbin/halt -i -d -p -f >/dev/null 2>&1 &

# for more safety:
exit 1


Then to keep the LCD clean, I created the following files;

/etc/rc.d/sglcd_startup (Added): (Symbolic link from /etc/rc.d/rc3.d/S00sglcd_startup)
echo -ne "\033X" > /dev/ttyS0

echo -n "   Booting...   " > /dev/ttyS0


/etc/rc.d/sglcd_booted (Added): (Symbolic link from /etc/rc.d/rc3.d/S99sglcd_booted)
sleep 20

echo -ne "\033X" > /dev/ttyS0
echo -n "Astaro  Home Use" > /dev/ttyS0
echo -ne "\nSecurity Gateway" > /dev/ttyS0
sleep 5
echo -ne "\033X" > /dev/ttyS0
echo -n "Astaro  Home Use" > /dev/ttyS0
echo -ne "\nSecurity Gateway" > /dev/ttyS0
sleep 5
echo -ne "\033X" > /dev/ttyS0
echo -n "Astaro  Home Use" > /dev/ttyS0
echo -ne "\nSecurity Gateway" > /dev/ttyS0
sleep 5
echo -ne "\033X" > /dev/ttyS0
echo -n "Astaro  Home Use" > /dev/ttyS0
echo -ne "\nSecurity Gateway" > /dev/ttyS0
sleep 5
echo -ne "\033X" > /dev/ttyS0
echo -n "Astaro  Home Use" > /dev/ttyS0
echo -ne "\nSecurity Gateway" > /dev/ttyS0
sleep 20
echo -ne "\033X" > /dev/ttyS0
echo -n "Astaro  Home Use" > /dev/ttyS0
echo -ne "\nSecurity Gateway" > /dev/ttyS0


/etc/rc.d/sglcd_shutdown (Added): (Symbolic link from /etc/rc.d/rc0.d/S00sglcd_shutdown)
echo -ne "\033X" > /dev/ttyS0

echo -ne "Shutting Down...\n" > /dev/ttyS0


/etc/rc.d/sglcd_restart (Added): (Symbolic link from /etc/rc.d/rc6.d/S00sglcd_restart)
echo -ne "\033X" > /dev/ttyS0

echo -n "  Restarting... " > /dev/ttyS0


The "booted" script has a few sleep commands and then sends the same info to the LCD panel a few times.  Reason for this in the booting process it looks like a program is probing the serial ports and it causes strings of junk to appear.  With the sleep commands, you will get some junk, but it will be gone in a few seconds.  Otherwise these are just for aesthetics only, this way I can at least visibly see when it's booting, restarting, or powering off.

One other thing I did do was modify the menu.lst file for startup so that the console will be redirected to the back serial port. (Just in case I do ever order up the cable or if others need it) Here's the changes I made to it:
# To enable serial console please uncomment the following two lines.

# You may also want to add a line like 'console=ttyS0,38400' to the
# 'kernel' lines below
serial --unit=1 --speed=115200
terminal --timeout=0 serial

title  Astaro Security Gateway V7
root (hd0,0)
kernel /boot/vmlinuz root=/dev/disk/by-label/root vga=normal video=ofonly nosmp noapic acpi=off splash=silent console=ttyS1,115200
initrd /boot/initrd

title  Astaro Security Gateway V7 (previous)
root (hd0,0)
kernel /boot/vmlinuz.previous root=/dev/disk/by-label/root vga=normal video=ofonly nosmp noapic acpi=off splash=silent console=ttyS1,115200
initrd /boot/initrd.previous

title  Astaro Security Gateway V7 (rescue)
root (hd0,0)
kernel /boot/vmlinuz root=/dev/disk/by-label/root vga=normal video=ofonly nosmp nolapic noapic acpi=off splash=silent console=ttyS1,115200
initrd /boot/initrd


To make sure I have an easy way to recover this system I made a disk image of it using dd.  The image is only 1.4GB and restores to the HDD quickly, also if others would like to load it on their SG30, it has minimal modifications to the original install and shouldn't cause a problem with updates and such. Also, the  In the future I'll probably be tweaking the LCD files and possibly adding some backup routines for mirroring the HDD.

I would be willing to share my HDD image with anyone here that would like it, but I won't post any links in here unless the moderators and such around here give me the green flag to do so.  The image itself is of the system IMMEDIATELY after the initial install and before the system has rebooted after that.  I basically found the files I needed to change, did another fresh install and modified the files I listed above to have a good baseline to work from. Basically as it would have been installed locally on the machine instead of a netbook, with as little modifications as possible to have a clean appearing machine.

So mods, is it a violation of any rules to share such an image?  Just want to make sure...

Also of note, the system is nice and responsive, and although I haven't loaded it yet and am still getting familiar with everything, I think it will be just fine for my 30MB cable connection.  Idle CPU is around 2-4% and uses 50-60% of memory after bootup, not too bad.  I did install the 7.503 and the 7.504 updates with no troubles, took less then 5 minutes to install and start the reboot for 7.504.  

Anyone else still using these things? [:$]

Ohhh, and this is my first post.. Be gentle... [:D]


This thread was automatically locked due to age.
Parents
  • Just reinstalled from my CD image and it all worked as expected!! [:D]

    Here's a log from the serial console:

    *****************************************************************************
    *   AMIBIOS System Configuration (C) 1985-2001, American Megatrends Inc.,   *
    ********************[364m****************************************************
    * Main Processor   : Intel(R) Celeron(TM) CPU                               *
    *****************************************************************************
    * Math Processor   : Built-In         * Base Memory Size : 640KB            *
    * Floppy Drive A:  : None             * Ext. Memory Size : 1023MB           *
    * Floppy Drive B:  : None             * Serial Port(s)   : 3F8,2F8          *
    * Display Type     : Monochrome       * Parallel Port(s) : None             *
    * AMIBIOS Date     : 05/09/2003       * Processor Clock  : 1.20GHz          *
    * External Cache   : 256KB,Enabled    * Power Management : Enabled          *
    * SDRAM at DIMM(s) : 1,2              * VCM at DIMM(s)   :                  *
    *****************************************************************************
    * Hard Disk(s)       Cyl   Head Sector Size     LBA   32Bit Block PIO  UDMA *
    *                                               Mode  Mode  Mode  Mode Mode *
    * Primary Master   : 19152 16   255    40008MB  LBA   On    16Sec  4   5    *
    *****************************************************************************
    * PCI Devices:                                                              *
    * Onboard USB Controller, IRQ11         Onboard USB Controller, IRQ11       *
    * Onboard IDE, IRQ14                    Onboard Ethernet, IRQ7              *
    * Onboard Ethernet, IRQ15               Onboard CardBus Bridge              *
    * Onboard CardBus Bridge                Onboard CardBus Bridge              *
    * Onboard USB Controller, IRQ11         Onboard USB Controller, IRQ15       *
    *****************************************************************************

        GNU GRUB  version 0.97  (639K lower / 1047488K upper memory)

     +-------------------------------------------------------------------------+
     | Astaro Security Gateway V8.1                                            |
     | Astaro Security Gateway V8.1 (previous)                                 |
     | Astaro Security Gateway V8.1 (rescue)                                   |
     | Memtest86+                                                              |
     |                                                                         |
     |                                                                         |
     |                                                                         |
     |                                                                         |
     |                                                                         |
     |                                                                         |
     |                                                                         |
     |                                                                         |
     +-------------------------------------------------------------------------+
          Use the ^ and v keys to select which entry is highlighted.
          Press enter to boot the selected OS, 'e' to edit the
          commands before booting, or 'c' for a command-line.


       The highlighted entry will be booted automatically in 1 seconds.

      Booting 'Astaro Security Gateway V8.1'

    root (hd0,0)
     Filesystem type is ext2fs, partition type 0x83
    kernel /boot/vmlinuz root=/dev/disk/by-label/root vga=normal video=ofonly rootf
    lags=data=ordered splash=silent  console=ttyS1,115200
       [Linux-bzImage, setup=0x3400, size=0x185a30]
    initrd /boot/initrd
       [Linux-initrd @ 0x37d3a000, 0x2b5241 bytes]

    [    0.000000] Linux version 2.6.32.24-81.g73e70cd-default (abuild@axgbuild) (gcc version 4.3.4 [gcc-4_3-branch revision 152973] (SUSE Linux) ) #1 Wed Jan 26 11:33:06 UTC 2011
    [    0.000000] KERNEL supported cpus:
    [    0.000000]   Intel GenuineIntel
    [    0.000000]   AMD AuthenticAMD
    [    0.000000]   NSC Geode by NSC
    [    0.000000]   Cyrix CyrixInstead
    [    0.000000]   Centaur CentaurHauls
    [    0.000000]   Transmeta GenuineTMx86
    [    0.000000]   Transmeta TransmetaCPU
    [    0.000000]   UMC UMC UMC UMC
    [    0.000000] BIOS-provided physical RAM map:
    [    0.000000]  BIOS-e820: 0000000000000000 - 000000000009fc00 (usable)
    [    0.000000]  BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved)
    [    0.000000]  BIOS-e820: 00000000000c0000 - 00000000000c8000 (reserved)
    [    0.000000]  BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
    [    0.000000]  BIOS-e820: 0000000000100000 - 000000003fff0000 (usable)
    [    0.000000]  BIOS-e820: 000000003fff0000 - 000000003fff8000 (ACPI data)
    [    0.000000]  BIOS-e820: 000000003fff8000 - 0000000040000000 (ACPI NVS)
    [    0.000000]  BIOS-e820: 00000000fff80000 - 0000000100000000 (reserved)
    [    0.000000] DMI 2.3 present.
    [    0.000000] AMI BIOS detected: BIOS may corrupt low RAM, working around it.
    [    0.000000] last_pfn = 0x3fff0 max_arch_pfn = 0x100000
    [    0.000000] init_memory_mapping: 0000000000000000-00000000377fe000
    [    0.000000] RAMDISK: 37d3a000 - 37fef241
    [    0.000000] Allocated new RAMDISK: 00100000 - 003b5241
    [    0.000000] Move RAMDISK from 0000000037d3a000 - 0000000037fef240 to 00100000 - 003b5240
    [    0.000000] ACPI: RSDP 000fa6c0 00014 (v00 AMI   )
    [    0.000000] ACPI: RSDT 3fff0000 00028 (v01 AMIINT VIA_P6   00000010 MSFT 00000097)
    [    0.000000] ACPI: FACP 3fff0030 00081 (v01 AMIINT VIA_P6   00000011 MSFT 00000097)
    [    0.000000] ACPI: DSDT 3fff00c0 0299E (v01    VIA APOLLO-P 00001000 MSFT 0100000D)
    [    0.000000] ACPI: FACS 3fff8000 00040
    [    0.000000] 135MB HIGHMEM available.
    [    0.000000] 887MB LOWMEM available.
    [    0.000000]   mapped low ram: 0 - 377fe000
    [    0.000000]   low ram: 0 - 377fe000
    [    0.000000]   node 0 low ram: 00000000 - 377fe000
    [    0.000000]   node 0 bootmap 00011000 - 00017f00
    [    0.000000] (7 early reservations) ==> bootmem [0000000000 - 00377fe000]
    [    0.000000]   #0 [0000000000 - 0000001000]   BIOS data page ==> [0000000000 - 0000001000]
    [    0.000000]   #1 [0001000000 - 000135d314]    TEXT DATA BSS ==> [0001000000 - 000135d314]
    [    0.000000]   #2 [000009fc00 - 0000100000]    BIOS reserved ==> [000009fc00 - 0000100000]
    [    0.000000]   #3 [000135e000 - 0001364120]              BRK ==> [000135e000 - 0001364120]
    [    0.000000]   #4 [0000010000 - 0000011000]          PGTABLE ==> [0000010000 - 0000011000]
    [    0.000000]   #5 [0000100000 - 00003b5241]      NEW RAMDISK ==> [0000100000 - 00003b5241]
    [    0.000000]   #6 [0000011000 - 0000018000]          BOOTMAP ==> [0000011000 - 0000018000]
    [    0.000000] Zone PFN ranges:
    [    0.000000]   DMA      0x00000010 -> 0x00001000
    [    0.000000]   Normal   0x00001000 -> 0x000377fe
    [    0.000000]   HighMem  0x000377fe -> 0x0003fff0
    [    0.000000] Movable zone start PFN for each node
    [    0.000000] early_node_map[2] active PFN ranges
    [    0.000000]     0: 0x00000010 -> 0x0000009f
    [    0.000000]     0: 0x00000100 -> 0x0003fff0
    [    0.000000] Using APIC driver default
    [    0.000000] ACPI: PM-Timer IO Port: 0x4008
    [    0.000000] Local APIC disabled by BIOS -- you can enable it with "lapic"
    [    0.000000] APIC: disable apic facility
    [    0.000000] Allocating PCI resources starting at 40000000 (gap: 40000000:bff80000)
    [    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 259967
    [    0.000000] Kernel command line: root=/dev/disk/by-label/root vga=normal video=ofonly rootflags=data=ordered splash=silent  console=ttyS1,115200
    [    0.000000] bootsplash: silent mode.
    [    0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
    [    0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
    [    0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
    [    0.000000] Enabling fast FPU save and restore... done.
    [    0.000000] Enabling unmasked SIMD FPU exception support... done.
    [    0.000000] Initializing CPU#0
    [    0.000000] Initializing HighMem for node 0 (000377fe:0003fff0)
    [    0.000000] Memory: 1032456k/1048512k available (1907k kernel code, 15248k reserved, 895k data, 264k init, 139208k highmem)
    [    0.000000] virtual kernel memory layout:
    [    0.000000]     fixmap  : 0xfffa4000 - 0xfffff000   ( 364 kB)
    [    0.000000]     pkmap   : 0xff800000 - 0xffc00000   (4096 kB)
    [    0.000000]     vmalloc : 0xf7ffe000 - 0xff7fe000   ( 120 MB)
    [    0.000000]     lowmem  : 0xc0000000 - 0xf77fe000   ( 887 MB)
    [    0.000000]       .init : 0xc12bd000 - 0xc12ff000   ( 264 kB)
    [    0.000000]       .data : 0xc11dcedc - 0xc12bce48   ( 895 kB)
    [    0.000000]       .text : 0xc1000000 - 0xc11dcedc   (1907 kB)
    [    0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
    [    0.000000] Hierarchical RCU implementation.
    [    0.000000] NR_IRQS:288
    [    0.000000] Console: colour dummy device 80x25
    [    0.000000] console [ttyS1] enabled
    [    0.000000] Fast TSC calibration using PIT
    [    0.000000] Detected 1208.435 MHz processor.
    [    0.003011] Calibrating delay loop (skipped), value calculated using timer frequency.. 2416.87 BogoMIPS (lpj=1208435)
Reply
  • Just reinstalled from my CD image and it all worked as expected!! [:D]

    Here's a log from the serial console:

    *****************************************************************************
    *   AMIBIOS System Configuration (C) 1985-2001, American Megatrends Inc.,   *
    ********************[364m****************************************************
    * Main Processor   : Intel(R) Celeron(TM) CPU                               *
    *****************************************************************************
    * Math Processor   : Built-In         * Base Memory Size : 640KB            *
    * Floppy Drive A:  : None             * Ext. Memory Size : 1023MB           *
    * Floppy Drive B:  : None             * Serial Port(s)   : 3F8,2F8          *
    * Display Type     : Monochrome       * Parallel Port(s) : None             *
    * AMIBIOS Date     : 05/09/2003       * Processor Clock  : 1.20GHz          *
    * External Cache   : 256KB,Enabled    * Power Management : Enabled          *
    * SDRAM at DIMM(s) : 1,2              * VCM at DIMM(s)   :                  *
    *****************************************************************************
    * Hard Disk(s)       Cyl   Head Sector Size     LBA   32Bit Block PIO  UDMA *
    *                                               Mode  Mode  Mode  Mode Mode *
    * Primary Master   : 19152 16   255    40008MB  LBA   On    16Sec  4   5    *
    *****************************************************************************
    * PCI Devices:                                                              *
    * Onboard USB Controller, IRQ11         Onboard USB Controller, IRQ11       *
    * Onboard IDE, IRQ14                    Onboard Ethernet, IRQ7              *
    * Onboard Ethernet, IRQ15               Onboard CardBus Bridge              *
    * Onboard CardBus Bridge                Onboard CardBus Bridge              *
    * Onboard USB Controller, IRQ11         Onboard USB Controller, IRQ15       *
    *****************************************************************************

        GNU GRUB  version 0.97  (639K lower / 1047488K upper memory)

     +-------------------------------------------------------------------------+
     | Astaro Security Gateway V8.1                                            |
     | Astaro Security Gateway V8.1 (previous)                                 |
     | Astaro Security Gateway V8.1 (rescue)                                   |
     | Memtest86+                                                              |
     |                                                                         |
     |                                                                         |
     |                                                                         |
     |                                                                         |
     |                                                                         |
     |                                                                         |
     |                                                                         |
     |                                                                         |
     +-------------------------------------------------------------------------+
          Use the ^ and v keys to select which entry is highlighted.
          Press enter to boot the selected OS, 'e' to edit the
          commands before booting, or 'c' for a command-line.


       The highlighted entry will be booted automatically in 1 seconds.

      Booting 'Astaro Security Gateway V8.1'

    root (hd0,0)
     Filesystem type is ext2fs, partition type 0x83
    kernel /boot/vmlinuz root=/dev/disk/by-label/root vga=normal video=ofonly rootf
    lags=data=ordered splash=silent  console=ttyS1,115200
       [Linux-bzImage, setup=0x3400, size=0x185a30]
    initrd /boot/initrd
       [Linux-initrd @ 0x37d3a000, 0x2b5241 bytes]

    [    0.000000] Linux version 2.6.32.24-81.g73e70cd-default (abuild@axgbuild) (gcc version 4.3.4 [gcc-4_3-branch revision 152973] (SUSE Linux) ) #1 Wed Jan 26 11:33:06 UTC 2011
    [    0.000000] KERNEL supported cpus:
    [    0.000000]   Intel GenuineIntel
    [    0.000000]   AMD AuthenticAMD
    [    0.000000]   NSC Geode by NSC
    [    0.000000]   Cyrix CyrixInstead
    [    0.000000]   Centaur CentaurHauls
    [    0.000000]   Transmeta GenuineTMx86
    [    0.000000]   Transmeta TransmetaCPU
    [    0.000000]   UMC UMC UMC UMC
    [    0.000000] BIOS-provided physical RAM map:
    [    0.000000]  BIOS-e820: 0000000000000000 - 000000000009fc00 (usable)
    [    0.000000]  BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved)
    [    0.000000]  BIOS-e820: 00000000000c0000 - 00000000000c8000 (reserved)
    [    0.000000]  BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
    [    0.000000]  BIOS-e820: 0000000000100000 - 000000003fff0000 (usable)
    [    0.000000]  BIOS-e820: 000000003fff0000 - 000000003fff8000 (ACPI data)
    [    0.000000]  BIOS-e820: 000000003fff8000 - 0000000040000000 (ACPI NVS)
    [    0.000000]  BIOS-e820: 00000000fff80000 - 0000000100000000 (reserved)
    [    0.000000] DMI 2.3 present.
    [    0.000000] AMI BIOS detected: BIOS may corrupt low RAM, working around it.
    [    0.000000] last_pfn = 0x3fff0 max_arch_pfn = 0x100000
    [    0.000000] init_memory_mapping: 0000000000000000-00000000377fe000
    [    0.000000] RAMDISK: 37d3a000 - 37fef241
    [    0.000000] Allocated new RAMDISK: 00100000 - 003b5241
    [    0.000000] Move RAMDISK from 0000000037d3a000 - 0000000037fef240 to 00100000 - 003b5240
    [    0.000000] ACPI: RSDP 000fa6c0 00014 (v00 AMI   )
    [    0.000000] ACPI: RSDT 3fff0000 00028 (v01 AMIINT VIA_P6   00000010 MSFT 00000097)
    [    0.000000] ACPI: FACP 3fff0030 00081 (v01 AMIINT VIA_P6   00000011 MSFT 00000097)
    [    0.000000] ACPI: DSDT 3fff00c0 0299E (v01    VIA APOLLO-P 00001000 MSFT 0100000D)
    [    0.000000] ACPI: FACS 3fff8000 00040
    [    0.000000] 135MB HIGHMEM available.
    [    0.000000] 887MB LOWMEM available.
    [    0.000000]   mapped low ram: 0 - 377fe000
    [    0.000000]   low ram: 0 - 377fe000
    [    0.000000]   node 0 low ram: 00000000 - 377fe000
    [    0.000000]   node 0 bootmap 00011000 - 00017f00
    [    0.000000] (7 early reservations) ==> bootmem [0000000000 - 00377fe000]
    [    0.000000]   #0 [0000000000 - 0000001000]   BIOS data page ==> [0000000000 - 0000001000]
    [    0.000000]   #1 [0001000000 - 000135d314]    TEXT DATA BSS ==> [0001000000 - 000135d314]
    [    0.000000]   #2 [000009fc00 - 0000100000]    BIOS reserved ==> [000009fc00 - 0000100000]
    [    0.000000]   #3 [000135e000 - 0001364120]              BRK ==> [000135e000 - 0001364120]
    [    0.000000]   #4 [0000010000 - 0000011000]          PGTABLE ==> [0000010000 - 0000011000]
    [    0.000000]   #5 [0000100000 - 00003b5241]      NEW RAMDISK ==> [0000100000 - 00003b5241]
    [    0.000000]   #6 [0000011000 - 0000018000]          BOOTMAP ==> [0000011000 - 0000018000]
    [    0.000000] Zone PFN ranges:
    [    0.000000]   DMA      0x00000010 -> 0x00001000
    [    0.000000]   Normal   0x00001000 -> 0x000377fe
    [    0.000000]   HighMem  0x000377fe -> 0x0003fff0
    [    0.000000] Movable zone start PFN for each node
    [    0.000000] early_node_map[2] active PFN ranges
    [    0.000000]     0: 0x00000010 -> 0x0000009f
    [    0.000000]     0: 0x00000100 -> 0x0003fff0
    [    0.000000] Using APIC driver default
    [    0.000000] ACPI: PM-Timer IO Port: 0x4008
    [    0.000000] Local APIC disabled by BIOS -- you can enable it with "lapic"
    [    0.000000] APIC: disable apic facility
    [    0.000000] Allocating PCI resources starting at 40000000 (gap: 40000000:bff80000)
    [    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 259967
    [    0.000000] Kernel command line: root=/dev/disk/by-label/root vga=normal video=ofonly rootflags=data=ordered splash=silent  console=ttyS1,115200
    [    0.000000] bootsplash: silent mode.
    [    0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
    [    0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
    [    0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
    [    0.000000] Enabling fast FPU save and restore... done.
    [    0.000000] Enabling unmasked SIMD FPU exception support... done.
    [    0.000000] Initializing CPU#0
    [    0.000000] Initializing HighMem for node 0 (000377fe:0003fff0)
    [    0.000000] Memory: 1032456k/1048512k available (1907k kernel code, 15248k reserved, 895k data, 264k init, 139208k highmem)
    [    0.000000] virtual kernel memory layout:
    [    0.000000]     fixmap  : 0xfffa4000 - 0xfffff000   ( 364 kB)
    [    0.000000]     pkmap   : 0xff800000 - 0xffc00000   (4096 kB)
    [    0.000000]     vmalloc : 0xf7ffe000 - 0xff7fe000   ( 120 MB)
    [    0.000000]     lowmem  : 0xc0000000 - 0xf77fe000   ( 887 MB)
    [    0.000000]       .init : 0xc12bd000 - 0xc12ff000   ( 264 kB)
    [    0.000000]       .data : 0xc11dcedc - 0xc12bce48   ( 895 kB)
    [    0.000000]       .text : 0xc1000000 - 0xc11dcedc   (1907 kB)
    [    0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
    [    0.000000] Hierarchical RCU implementation.
    [    0.000000] NR_IRQS:288
    [    0.000000] Console: colour dummy device 80x25
    [    0.000000] console [ttyS1] enabled
    [    0.000000] Fast TSC calibration using PIT
    [    0.000000] Detected 1208.435 MHz processor.
    [    0.003011] Calibrating delay loop (skipped), value calculated using timer frequency.. 2416.87 BogoMIPS (lpj=1208435)
Children
No Data