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
  • (Too long for one post)
    [    0.005070] Security Framework initialized
    [    0.006046] Mount-cache hash table entries: 512
    [    0.008289] CPU: L1 I cache: 16K, L1 D cache: 16K
    [    0.010002] CPU: L2 cache: 256K
    [    0.011010] mce: CPU supports 5 MCE banks
    [    0.012041] Performance Events:
    [    0.013004] no APIC, boot with the "lapic" boot parameter to force-enable it.
    [    0.014001] no hardware sampling interrupt available.
    [    0.015003] p6 PMU driver.
    [    0.016006] ... version:                0
    [    0.017001] ... bit width:              32
    [    0.018001] ... generic registers:      2
    [    0.019001] ... value mask:             00000000ffffffff
    [    0.020001] ... max period:             000000007fffffff
    [    0.021000] ... fixed-purpose events:   0
    [    0.022000] ... event mask:             0000000000000003
    [    0.023000] CPU: Intel(R) Celeron(TM) CPU                1200MHz stepping 04
    [    0.026009] Checking 'hlt' instruction... OK.
    [    0.031881] ACPI: Core revision 20090903
    [    0.038685] ACPI: setting ELCR to 0200 (from 8880)
    [    0.041208] Astaro Security Gateway V8 Packet Filter, secunetwall 2 Packet Filter BSI-DSZ-CC-0696: 'core' loaded
    [    0.042030] NET: Registered protocol family 16
    [    0.044461] ACPI: bus type pci registered
    [    0.047158] PCI: PCI BIOS revision 2.10 entry at 0xfdb51, last bus=1
    [    0.047997] PCI: Using configuration type 1 for base access
    [    0.051958] bio: create slab  at 0
    [    0.059997] ACPI: Interpreter enabled
    [    0.060995] ACPI: (supports S0 S5)
    [    0.062999] ACPI: Using PIC for interrupt routing
    [    0.071280] ACPI: Power Resource [URP1] (off)
    [    0.072061] ACPI: Power Resource [URP2] (off)
    [    0.073039] ACPI: Power Resource [FDDP] (off)
    [    0.074038] ACPI: Power Resource [LPTP] (off)
    [    0.076159] ACPI: No dock devices found.
    [    0.077242] ACPI: PCI Root Bridge [PCI0] (0000:00)
    [    0.078544] pci 0000:00:07.4: quirk: region 6000-607f claimed by vt82c686 HW-mon
    [    0.079003] pci 0000:00:07.4: quirk: region 0400-040f claimed by vt82c686 SMB
    [    0.080080] pci 0000:00:08.0: PME# supported from D1 D2 D3hot D3cold
    [    0.080995] pci 0000:00:08.0: PME# disabled
    [    0.082992] pci 0000:00:09.0: PME# supported from D0 D1 D2 D3hot
    [    0.083993] pci 0000:00:09.0: PME# disabled
    [    0.085042] pci 0000:00:0a.0: PME# supported from D0 D1 D2 D3hot D3cold
    [    0.085993] pci 0000:00:0a.0: PME# disabled
    [    0.087041] pci 0000:00:0a.1: PME# supported from D0 D1 D2 D3hot D3cold
    [    0.087993] pci 0000:00:0a.1: PME# disabled
    [    0.090009] pci 0000:00:0b.0: PME# supported from D0 D1 D2 D3hot D3cold
    [    0.090992] pci 0000:00:0b.0: PME# disabled
    [    0.093023] pci 0000:00:0c.2: PME# supported from D0 D3hot
    [    0.093991] pci 0000:00:0c.2: PME# disabled
    [    0.113195] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 *11 12 14 15)
    [    0.117732] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 *7 10 11 12 14 15)
    [    0.121126] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 10 11 12 14 *15)
    [    0.125319] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 10 *11 12 14 15)
    [    0.130055] vgaarb: loaded
    [    0.131162] usbcore: registered new interface driver usbfs
    [    0.132039] usbcore: registered new interface driver hub
    [    0.133055] usbcore: registered new device driver usb
    [    0.135162] PCI: Using ACPI for IRQ routing
    [    0.136332] Switching to clocksource tsc
    [    0.137074] pnp: PnP ACPI init
    [    0.140141] ACPI: bus type pnp registered
    [    0.147263] pnp: PnP ACPI: found 8 devices
    [    0.151394] ACPI: ACPI bus type pnp unregistered
    [    0.191371] pci 0000:00:01.0: PCI bridge, secondary bus 0000:01
    [    0.197305] pci 0000:00:01.0:   IO window: disabled
    [    0.387076] pci 0000:00:01.0:   MEM window: disabled
    [    0.392049] pci 0000:00:01.0:   PREFETCH window: disabled
    [    0.397461] pci 0000:00:0a.0: CardBus bridge, secondary bus 0000:02
    [    0.403737] pci 0000:00:0a.0:   IO window: 0x001000-0x0010ff
    [    0.409406] pci 0000:00:0a.0:   IO window: 0x001400-0x0014ff
    [    0.415074] pci 0000:00:0a.0:   PREFETCH window: 0x40000000-0x43ffffff
    [    0.421608] pci 0000:00:0a.0:   MEM window: 0x44000000-0x47ffffff
    [    0.427709] pci 0000:00:0a.1: CardBus bridge, secondary bus 0000:06
    [    0.433989] pci 0000:00:0a.1:   IO window: 0x001800-0x0018ff
    [    0.439656] pci 0000:00:0a.1:   IO window: 0x001c00-0x001cff
    [    0.445325] pci 0000:00:0a.1:   PREFETCH window: 0x48000000-0x4bffffff
    [    0.451858] pci 0000:00:0a.1:   MEM window: 0x4c000000-0x4fffffff
    [    0.457960] pci 0000:00:0b.0: CardBus bridge, secondary bus 0000:0a
    [    0.464240] pci 0000:00:0b.0:   IO window: 0x002000-0x0020ff
    [    0.469909] pci 0000:00:0b.0:   IO window: 0x002400-0x0024ff
    [    0.475575] pci 0000:00:0b.0:   PREFETCH window: 0x50000000-0x53ffffff
    [    0.482108] pci 0000:00:0b.0:   MEM window: 0x54000000-0x57ffffff
    [    0.488547] ACPI: PCI Interrupt Link [LNKD] enabled at IRQ 11
    [    0.494339] pci 0000:00:0a.0: PCI INT A -> Link[LNKD] -> GSI 11 (level, low) -> IRQ 11
    [    0.502274] pci 0000:00:0a.1: PCI INT A -> Link[LNKD] -> GSI 11 (level, low) -> IRQ 11
    [    0.510419] ACPI: PCI Interrupt Link [LNKA] enabled at IRQ 11
    [    0.516172] pci 0000:00:0b.0: PCI INT A -> Link[LNKA] -> GSI 11 (level, low) -> IRQ 11
    [    0.524253] NET: Registered protocol family 2
    [    0.528704] IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
    [    0.536183] asg_cluster [INFO]: Registered IPv4 okfn
    [    0.541280] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
    [    0.554835] TCP bind hash table entries: 65536 (order: 6, 262144 bytes)
    [    0.563039] TCP: Hash tables configured (established 131072 bind 65536)
    [    0.569690] TCP reno registered
    [    0.573120] NET: Registered protocol family 1
    [    0.577575] pci 0000:00:01.0: disabling DAC on VIA PCI bridge
    [    0.583348] pci 0000:00:07.0: Disabling VIA external APIC routing
    [    0.589527] pci 0000:00:09.0: Firmware left e100 interrupts enabled; disabling
    [    0.596955] Trying to unpack rootfs image as initramfs...
    [    0.783570] Freeing initrd memory: 2772k freed
    [    0.798276] audit: initializing netlink socket (disabled)
    [    0.803727] type=2000 audit(1300258202.803:1): initialized
    [    0.815630] highmem bounce pool size: 64 pages
    [    0.820160] HugeTLB registered 4 MB page size, pre-allocated 0 pages
    [    0.826780] msgmni has been set to 1750
    [    0.830835] alg: No test for stdrng (krng)
    [    0.835096] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 254)
    [    0.842507] io scheduler noop registered
    [    0.846463] io scheduler cfq registered (default)
    [    0.980639] Linux agpgart interface v0.103
    [    0.984846] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
    [    0.991319] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
    [    0.997855] serial8250: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
    [    1.005620] 00:02: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
    [    1.012089] 00:03: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
    [    1.021285] brd: module loaded
    [    1.024395] Uniform Multi-Platform E-IDE driver
    [    1.029107] ide-gd driver 1.18
    [    1.032257] RED: starting, Copyright (c) 2009 Sven Schnelle 
    [    1.040530] PNP: No PS/2 controller found. Probing ports directly.
    [    1.047219] serio: i8042 KBD port at 0x60,0x64 irq 1
    [    1.052198] serio: i8042 AUX port at 0x60,0x64 irq 12
    [    1.057830] mice: PS/2 mouse device common for all mice
    [    1.063365] input: PC Speaker as /devices/platform/pcspkr/input/input0
    [    1.069969] EDAC MC: Ver: 2.1.0 Jan 26 2011
    [    1.074358] cpuidle: using governor ladder
    [    1.078485] cpuidle: using governor menu
    [    1.082723] TCP cubic registered
    [    1.085983] ASG cluster v2.0 loaded with support for 32 nodes. (C) Astaro AG 2006-2009
    [    1.093930] asg_cluster [init]: loaded warp helper with conntrack rb size 160 kb (total 8192)
    [    1.102472] asg_cluster [init]: header size 280
    [    1.107029] Using IPI Shortcut mode
    [    1.111759] Freeing unused kernel memory: 264k freed
    doing fast boot
    [    1.262224] BIOS EDD facility v0.16 2004-Jun-25, 1 devices found
    [    1.327437] SCSI subsystem initialized
    [    1.390662] scsi0 : pata_via
    [    1.393996] scsi1 : pata_via
    [    1.400140] ata1: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0xfc00 irq 14
    [    1.407379] ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0xfc08 irq 15
    [    1.590671] ata1.00: ATA-6: HTS548040M9AT00, MG2OA53A, max UDMA/100
    [    1.597333] ata1.00: 78140160 sectors, multi 16: LBA48
    [    1.608664] ata1.00: configured for UDMA/100
    [    1.613431] scsi 0:0:0:0: Direct-Access     ATA      HTS548040M9AT00  MG2O PQ: 0 ANSI: 5
    Creating device nodes with udev
    [    1.718290] udevd version 128 started
    [    2.077978] sd 0:0:0:0: [sda] 78140160 512-byte logical blocks: (40.0 GB/37.2 GiB)
    [    2.113525] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [    2.120526] ehci_hcd 0000:00:0c.2: PCI INT C -> Link[LNKD] -> GSI 11 (level, low) -> IRQ 11
    [    2.129319] ehci_hcd 0000:00:0c.2: EHCI Host Controller
    [    2.134804] ehci_hcd 0000:00:0c.2: new USB bus registered, assigned bus number 1
    [    2.142609] ehci_hcd 0000:00:0c.2: irq 11, io mem 0xdffffe00
    [    2.164169] sd 0:0:0:0: [sda] Write Protect is off
    [    2.209168] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [    2.295182]  sda: sda1 sda2 sda3 sda4 
    [    2.426814] usb usb1: configuration #1 chosen from 1 choice
    [    2.442442] hub 1-0:1.0: USB hub found
    [    2.446437] hub 1-0:1.0: 4 ports detected
    [    2.495592] sd 0:0:0:0: [sda] Attached SCSI disk
Reply
  • (Too long for one post)
    [    0.005070] Security Framework initialized
    [    0.006046] Mount-cache hash table entries: 512
    [    0.008289] CPU: L1 I cache: 16K, L1 D cache: 16K
    [    0.010002] CPU: L2 cache: 256K
    [    0.011010] mce: CPU supports 5 MCE banks
    [    0.012041] Performance Events:
    [    0.013004] no APIC, boot with the "lapic" boot parameter to force-enable it.
    [    0.014001] no hardware sampling interrupt available.
    [    0.015003] p6 PMU driver.
    [    0.016006] ... version:                0
    [    0.017001] ... bit width:              32
    [    0.018001] ... generic registers:      2
    [    0.019001] ... value mask:             00000000ffffffff
    [    0.020001] ... max period:             000000007fffffff
    [    0.021000] ... fixed-purpose events:   0
    [    0.022000] ... event mask:             0000000000000003
    [    0.023000] CPU: Intel(R) Celeron(TM) CPU                1200MHz stepping 04
    [    0.026009] Checking 'hlt' instruction... OK.
    [    0.031881] ACPI: Core revision 20090903
    [    0.038685] ACPI: setting ELCR to 0200 (from 8880)
    [    0.041208] Astaro Security Gateway V8 Packet Filter, secunetwall 2 Packet Filter BSI-DSZ-CC-0696: 'core' loaded
    [    0.042030] NET: Registered protocol family 16
    [    0.044461] ACPI: bus type pci registered
    [    0.047158] PCI: PCI BIOS revision 2.10 entry at 0xfdb51, last bus=1
    [    0.047997] PCI: Using configuration type 1 for base access
    [    0.051958] bio: create slab  at 0
    [    0.059997] ACPI: Interpreter enabled
    [    0.060995] ACPI: (supports S0 S5)
    [    0.062999] ACPI: Using PIC for interrupt routing
    [    0.071280] ACPI: Power Resource [URP1] (off)
    [    0.072061] ACPI: Power Resource [URP2] (off)
    [    0.073039] ACPI: Power Resource [FDDP] (off)
    [    0.074038] ACPI: Power Resource [LPTP] (off)
    [    0.076159] ACPI: No dock devices found.
    [    0.077242] ACPI: PCI Root Bridge [PCI0] (0000:00)
    [    0.078544] pci 0000:00:07.4: quirk: region 6000-607f claimed by vt82c686 HW-mon
    [    0.079003] pci 0000:00:07.4: quirk: region 0400-040f claimed by vt82c686 SMB
    [    0.080080] pci 0000:00:08.0: PME# supported from D1 D2 D3hot D3cold
    [    0.080995] pci 0000:00:08.0: PME# disabled
    [    0.082992] pci 0000:00:09.0: PME# supported from D0 D1 D2 D3hot
    [    0.083993] pci 0000:00:09.0: PME# disabled
    [    0.085042] pci 0000:00:0a.0: PME# supported from D0 D1 D2 D3hot D3cold
    [    0.085993] pci 0000:00:0a.0: PME# disabled
    [    0.087041] pci 0000:00:0a.1: PME# supported from D0 D1 D2 D3hot D3cold
    [    0.087993] pci 0000:00:0a.1: PME# disabled
    [    0.090009] pci 0000:00:0b.0: PME# supported from D0 D1 D2 D3hot D3cold
    [    0.090992] pci 0000:00:0b.0: PME# disabled
    [    0.093023] pci 0000:00:0c.2: PME# supported from D0 D3hot
    [    0.093991] pci 0000:00:0c.2: PME# disabled
    [    0.113195] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 *11 12 14 15)
    [    0.117732] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 *7 10 11 12 14 15)
    [    0.121126] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 10 11 12 14 *15)
    [    0.125319] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 10 *11 12 14 15)
    [    0.130055] vgaarb: loaded
    [    0.131162] usbcore: registered new interface driver usbfs
    [    0.132039] usbcore: registered new interface driver hub
    [    0.133055] usbcore: registered new device driver usb
    [    0.135162] PCI: Using ACPI for IRQ routing
    [    0.136332] Switching to clocksource tsc
    [    0.137074] pnp: PnP ACPI init
    [    0.140141] ACPI: bus type pnp registered
    [    0.147263] pnp: PnP ACPI: found 8 devices
    [    0.151394] ACPI: ACPI bus type pnp unregistered
    [    0.191371] pci 0000:00:01.0: PCI bridge, secondary bus 0000:01
    [    0.197305] pci 0000:00:01.0:   IO window: disabled
    [    0.387076] pci 0000:00:01.0:   MEM window: disabled
    [    0.392049] pci 0000:00:01.0:   PREFETCH window: disabled
    [    0.397461] pci 0000:00:0a.0: CardBus bridge, secondary bus 0000:02
    [    0.403737] pci 0000:00:0a.0:   IO window: 0x001000-0x0010ff
    [    0.409406] pci 0000:00:0a.0:   IO window: 0x001400-0x0014ff
    [    0.415074] pci 0000:00:0a.0:   PREFETCH window: 0x40000000-0x43ffffff
    [    0.421608] pci 0000:00:0a.0:   MEM window: 0x44000000-0x47ffffff
    [    0.427709] pci 0000:00:0a.1: CardBus bridge, secondary bus 0000:06
    [    0.433989] pci 0000:00:0a.1:   IO window: 0x001800-0x0018ff
    [    0.439656] pci 0000:00:0a.1:   IO window: 0x001c00-0x001cff
    [    0.445325] pci 0000:00:0a.1:   PREFETCH window: 0x48000000-0x4bffffff
    [    0.451858] pci 0000:00:0a.1:   MEM window: 0x4c000000-0x4fffffff
    [    0.457960] pci 0000:00:0b.0: CardBus bridge, secondary bus 0000:0a
    [    0.464240] pci 0000:00:0b.0:   IO window: 0x002000-0x0020ff
    [    0.469909] pci 0000:00:0b.0:   IO window: 0x002400-0x0024ff
    [    0.475575] pci 0000:00:0b.0:   PREFETCH window: 0x50000000-0x53ffffff
    [    0.482108] pci 0000:00:0b.0:   MEM window: 0x54000000-0x57ffffff
    [    0.488547] ACPI: PCI Interrupt Link [LNKD] enabled at IRQ 11
    [    0.494339] pci 0000:00:0a.0: PCI INT A -> Link[LNKD] -> GSI 11 (level, low) -> IRQ 11
    [    0.502274] pci 0000:00:0a.1: PCI INT A -> Link[LNKD] -> GSI 11 (level, low) -> IRQ 11
    [    0.510419] ACPI: PCI Interrupt Link [LNKA] enabled at IRQ 11
    [    0.516172] pci 0000:00:0b.0: PCI INT A -> Link[LNKA] -> GSI 11 (level, low) -> IRQ 11
    [    0.524253] NET: Registered protocol family 2
    [    0.528704] IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
    [    0.536183] asg_cluster [INFO]: Registered IPv4 okfn
    [    0.541280] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
    [    0.554835] TCP bind hash table entries: 65536 (order: 6, 262144 bytes)
    [    0.563039] TCP: Hash tables configured (established 131072 bind 65536)
    [    0.569690] TCP reno registered
    [    0.573120] NET: Registered protocol family 1
    [    0.577575] pci 0000:00:01.0: disabling DAC on VIA PCI bridge
    [    0.583348] pci 0000:00:07.0: Disabling VIA external APIC routing
    [    0.589527] pci 0000:00:09.0: Firmware left e100 interrupts enabled; disabling
    [    0.596955] Trying to unpack rootfs image as initramfs...
    [    0.783570] Freeing initrd memory: 2772k freed
    [    0.798276] audit: initializing netlink socket (disabled)
    [    0.803727] type=2000 audit(1300258202.803:1): initialized
    [    0.815630] highmem bounce pool size: 64 pages
    [    0.820160] HugeTLB registered 4 MB page size, pre-allocated 0 pages
    [    0.826780] msgmni has been set to 1750
    [    0.830835] alg: No test for stdrng (krng)
    [    0.835096] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 254)
    [    0.842507] io scheduler noop registered
    [    0.846463] io scheduler cfq registered (default)
    [    0.980639] Linux agpgart interface v0.103
    [    0.984846] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
    [    0.991319] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
    [    0.997855] serial8250: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
    [    1.005620] 00:02: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
    [    1.012089] 00:03: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
    [    1.021285] brd: module loaded
    [    1.024395] Uniform Multi-Platform E-IDE driver
    [    1.029107] ide-gd driver 1.18
    [    1.032257] RED: starting, Copyright (c) 2009 Sven Schnelle 
    [    1.040530] PNP: No PS/2 controller found. Probing ports directly.
    [    1.047219] serio: i8042 KBD port at 0x60,0x64 irq 1
    [    1.052198] serio: i8042 AUX port at 0x60,0x64 irq 12
    [    1.057830] mice: PS/2 mouse device common for all mice
    [    1.063365] input: PC Speaker as /devices/platform/pcspkr/input/input0
    [    1.069969] EDAC MC: Ver: 2.1.0 Jan 26 2011
    [    1.074358] cpuidle: using governor ladder
    [    1.078485] cpuidle: using governor menu
    [    1.082723] TCP cubic registered
    [    1.085983] ASG cluster v2.0 loaded with support for 32 nodes. (C) Astaro AG 2006-2009
    [    1.093930] asg_cluster [init]: loaded warp helper with conntrack rb size 160 kb (total 8192)
    [    1.102472] asg_cluster [init]: header size 280
    [    1.107029] Using IPI Shortcut mode
    [    1.111759] Freeing unused kernel memory: 264k freed
    doing fast boot
    [    1.262224] BIOS EDD facility v0.16 2004-Jun-25, 1 devices found
    [    1.327437] SCSI subsystem initialized
    [    1.390662] scsi0 : pata_via
    [    1.393996] scsi1 : pata_via
    [    1.400140] ata1: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0xfc00 irq 14
    [    1.407379] ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0xfc08 irq 15
    [    1.590671] ata1.00: ATA-6: HTS548040M9AT00, MG2OA53A, max UDMA/100
    [    1.597333] ata1.00: 78140160 sectors, multi 16: LBA48
    [    1.608664] ata1.00: configured for UDMA/100
    [    1.613431] scsi 0:0:0:0: Direct-Access     ATA      HTS548040M9AT00  MG2O PQ: 0 ANSI: 5
    Creating device nodes with udev
    [    1.718290] udevd version 128 started
    [    2.077978] sd 0:0:0:0: [sda] 78140160 512-byte logical blocks: (40.0 GB/37.2 GiB)
    [    2.113525] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [    2.120526] ehci_hcd 0000:00:0c.2: PCI INT C -> Link[LNKD] -> GSI 11 (level, low) -> IRQ 11
    [    2.129319] ehci_hcd 0000:00:0c.2: EHCI Host Controller
    [    2.134804] ehci_hcd 0000:00:0c.2: new USB bus registered, assigned bus number 1
    [    2.142609] ehci_hcd 0000:00:0c.2: irq 11, io mem 0xdffffe00
    [    2.164169] sd 0:0:0:0: [sda] Write Protect is off
    [    2.209168] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [    2.295182]  sda: sda1 sda2 sda3 sda4 
    [    2.426814] usb usb1: configuration #1 chosen from 1 choice
    [    2.442442] hub 1-0:1.0: USB hub found
    [    2.446437] hub 1-0:1.0: 4 ports detected
    [    2.495592] sd 0:0:0:0: [sda] Attached SCSI disk
Children
No Data