<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel>
        <title>Linux 3.3.2 kernel for Dockstar, GoFlex and many others</title>
        <description>[b]Tested in:[/b]  Dockstar, GoFlex Net/Home, Pogoplug E02/V2, Zyxel NSA320

[b]Requirements/Compatibility:[/b]
[list]
[*]Hardware:  Any mainline-Linux-supported Kirkwood machine, plus many others: both SheevaPlugs, Cloud Engines Pogoplug V1/V2/V4, Seagate Dockstar &amp; GoFlexNet/Home, the Zyxel NSA3x0 variants, QNAP TS-219/41x, all 3 OpenRD boards, all 4 LaCie (Inter)Netspace variants, HP&#039;s T5325 ThinClient,  and all 4 original Marvell xx88F6xxx boards.
[*][b][color=#CC0000]U-Boot[/color][/b]: [url=http://forum.doozan.com/read.php?3,6965,6965]U-Boot with [u]L2-Cache Disable[/u]@Boot Feature[/url], or a machine with a U-Boot that will correctly decompress a 3.2 (or higher) kernel, load it, and boot it.
[/list]


[b]Capabilities/Configuration:[/b] conforms to standard Debian Kirkwood kernel, but with added support for GoFlex Net (with SATA &amp;  LED support &amp; [u][url=http://forum.doozan.com/read.php?2,7451,7494#msg-7494]fix for the NAND bad blocks symptoms[/url][/u]). Will work fine on Pogoplug E02/V2 and Pogoplug E01/V1, but without perfect LED support.   The [b]kernel config[/b] file is here:  [url=http://ppl.ug/dWu4fpz-3UY/]config-3.3.2-dg-wide[/url]

[b]Installation/Overview:[/b] the general steps are as follows: [list=1]
[*] prepare yourself and know what to do in case something goes wrong, before it goes wrong - read and understand - accept all responsibility for installing/using this kernel, since while it has been tested, there is no warranty, either implied or expressed
[*] have either UART/serial connection or Netconsole connection and know how to use it
[*] back up your current /boot dir in case there is some unforeseen problem
[*] download [url=https://www.dropbox.com/sh/nwt2kbvetvgvroo/661x9b5PLg/Kirkwood/kernel/linux-image-3.3.2-kirkwood-dg_1.1_armel.deb]kernel package[/url] and copy it to the root directory of your Kirkwood device
[*] install kernel package
[*] prepare uImage and uInitrd for U-Boot
[*] reboot &amp; check
[/list]

[b]Installation/Details/Commands:[/b]  
[code]
# backup your /boot dir 
cd /
cp -r boot boot-backup



# get the kernel .deb  :    [url=https://www.dropbox.com/sh/nwt2kbvetvgvroo/661x9b5PLg/Kirkwood/kernel/linux-image-3.3.2-kirkwood-dg_1.1_armel.deb[/url]
# download it and copy it to the / (root) directory of your kirkwood device - via network, USB device, etc.



# install it
dpkg -i linux-image-3.3.2-kirkwood-dg_1.1_armel.deb


# prepare it for U-Boot
cd /boot
mkimage -A arm -O linux -T kernel  -C none -a 0x00008000 -e 0x00008000 -n Linux-3.3.2 -d vmlinuz-3.3.2-kirkwood-dg uImage
mkimage -A arm -O linux -T ramdisk -C gzip -a 0x00000000 -e 0x00000000 -n initramfs-3.3.2-kirkwood-dg -d initrd.img-3.3.2-kirkwood-dg uInitrd



# reboot and check
reboot
# monitor behavior via serial/UART console, or via Netconsole &amp; check 
uname -a 
[/code]


[b]Expected Output Sample/Proof Install[/b]
[code]
root@AirDisk2:/# uname -a
Linux AirDisk2 3.2.0-2-kirkwood #1 Mon Mar 5 17:06:08 UTC 2012 armv5tel GNU/Linux
root@AirDisk2:/# cd /
root@AirDisk2:/# cp -r boot boot-backup
root@AirDisk2:/# cp /home/timemachine/linux-image-3.3.2-kirkwood-dg_1.1_armel.deb  .
root@AirDisk2:/# dpkg -i linux-image-3.3.2-kirkwood-dg_1.1_armel.deb
Selecting previously unselected package linux-image-3.3.2-kirkwood-dg.
(Reading database ... 47094 files and directories currently installed.)
Unpacking linux-image-3.3.2-kirkwood-dg (from linux-image-3.3.2-kirkwood-dg_1.1_armel.deb) ...
Done.
Setting up linux-image-3.3.2-kirkwood-dg (1.1) ...

 Hmm. There is a symbolic link /lib/modules/3.3.2-kirkwood-dg/build
 However, I can not read it: No such file or directory
 Therefore, I am deleting /lib/modules/3.3.2-kirkwood-dg/build


 Hmm. The package shipped with a symbolic link /lib/modules/3.3.2-kirkwood-dg/source
 However, I can not read the target: No such file or directory
 Therefore, I am deleting /lib/modules/3.3.2-kirkwood-dg/source

Running depmod.
Examining /etc/kernel/postinst.d.
run-parts: executing /etc/kernel/postinst.d/initramfs-tools 3.3.2-kirkwood-dg /boot/vmlinuz-3.3.2-kirkwood-dg
update-initramfs: Generating /boot/initrd.img-3.3.2-kirkwood-dg
run-parts: executing /etc/kernel/postinst.d/zz-flash-kernel 3.3.2-kirkwood-dg /boot/vmlinuz-3.3.2-kirkwood-dg
root@AirDisk2:/# cd /boot
root@AirDisk2:/boot# mkimage -A arm -O linux -T kernel  -C none -a 0x00008000 -e 0x00008000 -n Linux-3.3.2 -d vmlinuz-3.3.2-kirkwood-dg uImage
Image Name:   Linux-3.3.2
Created:      Sat Apr 21 22:20:24 2012
Image Type:   ARM Linux Kernel Image (uncompressed)
Data Size:    2277984 Bytes = 2224.59 kB = 2.17 MB
Load Address: 00008000
Entry Point:  00008000
root@AirDisk2:/boot# mkimage -A arm -O linux -T ramdisk -C gzip -a 0x00000000 -e 0x00000000 -n initramfs-3.3.2-kirkwood-dg -d initrd.img-3.3.2-kirkwood-dg uInitrd
Image Name:   initramfs-3.3.2-kirkwood-dg
Created:      Sat Apr 21 22:20:30 2012
Image Type:   ARM Linux RAMDisk Image (gzip compressed)
Data Size:    7576044 Bytes = 7398.48 kB = 7.23 MB
Load Address: 00000000
Entry Point:  00000000
root@AirDisk2:/boot# reboot

Broadcast message from root@AirDisk2 (pts/0) (Sat Apr 21 22:21:04 2012):

The system is going down for reboot NOW!
root@AirDisk2:/boot# Connection to ***.***.**.*** closed by remote host.
Connection to ***.***.**.*** closed.
davygravy@bitbaker64:~/Desktop$ sudo ssh root@***.***.**.***
[sudo] password for davygravy: 
root@***.***.**.***&#039;s password: 
Linux AirDisk2 3.3.2-kirkwood-dg #1 Sat Apr 21 13:30:43 CDT 2012 armv5tel

The programs included with the Debian GNU/Linux system are free software;
the exact distribution terms for each program are described in the
individual files in /usr/share/doc/*/copyright.

Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent
permitted by applicable law.
Last login: Sat Apr 21 22:05:09 2012 from bitbaker64.local
root@AirDisk2:~# uname -a
Linux AirDisk2 3.3.2-kirkwood-dg #1 Sat Apr 21 13:30:43 CDT 2012 armv5tel GNU/Linux
root@AirDisk2:~# 

[/code]</description>
        <link>https://forum.doozan.com/read.php?2,7676,7676#msg-7676</link>
        <lastBuildDate>Thu, 12 Mar 2026 21:16:49 -0500</lastBuildDate>
        <generator>Phorum 5.2.23</generator>
        <item>
            <guid>https://forum.doozan.com/read.php?2,7676,24751#msg-24751</guid>
            <title>Re: Linux 3.3.2 kernel for Dockstar, GoFlex and many others</title>
            <link>https://forum.doozan.com/read.php?2,7676,24751#msg-24751</link>
            <description><![CDATA[ Big Pogo Fan Wrote:<br />
-------------------------------------------------------<br />
&gt; The config file in the first post is not available<br />
&gt; . <br />
&gt; Can someone upload it again ? <br />
&gt; Thanks in advance.<br />
<br />
<br />
See this thread for newer kernel, if that&#039;s what you are looking for:<br />
<a href="http://forum.doozan.com/read.php?2,12096"  rel="nofollow">http://forum.doozan.com/read.php?2,12096</a>]]></description>
            <dc:creator>bodhi</dc:creator>
            <category>Debian</category>
            <pubDate>Wed, 02 Dec 2015 14:54:42 -0600</pubDate>
        </item>
        <item>
            <guid>https://forum.doozan.com/read.php?2,7676,24749#msg-24749</guid>
            <title>Re: Linux 3.3.2 kernel for Dockstar, GoFlex and many others</title>
            <link>https://forum.doozan.com/read.php?2,7676,24749#msg-24749</link>
            <description><![CDATA[ The config file in the first post is not available . <br />
Can someone upload it again ? <br />
Thanks in advance.]]></description>
            <dc:creator>Big Pogo Fan</dc:creator>
            <category>Debian</category>
            <pubDate>Wed, 02 Dec 2015 13:44:58 -0600</pubDate>
        </item>
        <item>
            <guid>https://forum.doozan.com/read.php?2,7676,14103#msg-14103</guid>
            <title>Re: Linux 3.3.2 kernel for Dockstar, GoFlex and many others</title>
            <link>https://forum.doozan.com/read.php?2,7676,14103#msg-14103</link>
            <description><![CDATA[ Is it safe to apply the patch file from 3.3.2 to the 3.12 kernel source and then build it with the 3.3.2 kernel configuration?]]></description>
            <dc:creator>gee-man</dc:creator>
            <category>Debian</category>
            <pubDate>Sun, 10 Nov 2013 11:06:30 -0600</pubDate>
        </item>
        <item>
            <guid>https://forum.doozan.com/read.php?2,7676,14043#msg-14043</guid>
            <title>Re: Linux 3.3.2 kernel for Dockstar, GoFlex and many others</title>
            <link>https://forum.doozan.com/read.php?2,7676,14043#msg-14043</link>
            <description><![CDATA[ Just use the link <u>Kirkwood Downloads</u> from the first post and you can find everything you need.<br />
<br />
- shv]]></description>
            <dc:creator>shv</dc:creator>
            <category>Debian</category>
            <pubDate>Tue, 05 Nov 2013 09:38:51 -0600</pubDate>
        </item>
        <item>
            <guid>https://forum.doozan.com/read.php?2,7676,14035#msg-14035</guid>
            <title>Re: Linux 3.3.2 kernel for Dockstar, GoFlex and many others</title>
            <link>https://forum.doozan.com/read.php?2,7676,14035#msg-14035</link>
            <description><![CDATA[ gee-man Wrote:<br />
-------------------------------------------------------<br />
&gt; Hi, can someone post the kernel config again?  The<br />
&gt; link in post #1 is not working anymore... Also,<br />
&gt; was this kernel built with any sort of patch<br />
&gt; files?<br />
&gt; <br />
&gt; Thanks,<br />
<br />
You can find the kernel config file in /boot directory. Should be something like this:<br />
config-3.3.2.xx-kirkwood-xxx]]></description>
            <dc:creator>bodhi</dc:creator>
            <category>Debian</category>
            <pubDate>Tue, 05 Nov 2013 00:33:49 -0600</pubDate>
        </item>
        <item>
            <guid>https://forum.doozan.com/read.php?2,7676,14033#msg-14033</guid>
            <title>Re: Linux 3.3.2 kernel for Dockstar, GoFlex and many others</title>
            <link>https://forum.doozan.com/read.php?2,7676,14033#msg-14033</link>
            <description><![CDATA[ Hi, can someone post the kernel config again?  The link in post #1 is not working anymore... Also, was this kernel built with any sort of patch files?<br />
<br />
Thanks,]]></description>
            <dc:creator>gee-man</dc:creator>
            <category>Debian</category>
            <pubDate>Mon, 04 Nov 2013 21:11:38 -0600</pubDate>
        </item>
        <item>
            <guid>https://forum.doozan.com/read.php?2,7676,13744#msg-13744</guid>
            <title>Re: Linux 3.3.2 kernel for Dockstar, GoFlex and many others</title>
            <link>https://forum.doozan.com/read.php?2,7676,13744#msg-13744</link>
            <description><![CDATA[ Ben, I had the same error but continued and am now at 3.9.5 everything worked fine here]]></description>
            <dc:creator>Tim</dc:creator>
            <category>Debian</category>
            <pubDate>Mon, 07 Oct 2013 15:32:29 -0500</pubDate>
        </item>
        <item>
            <guid>https://forum.doozan.com/read.php?2,7676,12828#msg-12828</guid>
            <title>Re: Linux 3.3.2 kernel for Dockstar, GoFlex and many others</title>
            <link>https://forum.doozan.com/read.php?2,7676,12828#msg-12828</link>
            <description><![CDATA[ Hi again,<br />
<br />
I got my serial cable, here is the output of a 3.8.4 kernel:<br />
<br />
.........<br />
[   30.989456] md: ... autorun DONE.<br />
[   30.992888] VFS: Cannot open root device &quot;LABEL=rootfs&quot; or unknown-block(0,0): error -6<br />
[   31.000940] Please append a correct &quot;root=&quot; boot option; here are the available partitions:<br />
[   31.009337] 1f00            1024 mtdblock0  (driver?)<br />
[   31.014418] 1f01            4096 mtdblock1  (driver?)<br />
[   31.019510] 1f02           32768 mtdblock2  (driver?)<br />
[   31.024592] 1f03          224256 mtdblock3  (driver?)<br />
[   31.029686] 0800         3915776 sda  driver: sd<br />
[   31.034333]   0801         3711697 sda1 99b8a5b2-01<br />
[   31.039252]   0802          203280 sda2 99b8a5b2-02<br />
[   31.044161] Kernel panic - not syncing: VFS: Unable to mount root fs on unknown-block(0,0)<br />
[   31.052488] [&lt;c00142c8&gt;] (unwind_backtrace+0x0/0xe0) from [&lt;c0502cb4&gt;] (panic+0x78/0x1d4)<br />
[   31.060718] [&lt;c0502cb4&gt;] (panic+0x78/0x1d4) from [&lt;c06e7c80&gt;] (mount_block_root+0x268/0x2bc)<br />
[   31.069204] [&lt;c06e7c80&gt;] (mount_block_root+0x268/0x2bc) from [&lt;c06e7e54&gt;] (prepare_namespace+0x120/0x180)<br />
[   31.078821] [&lt;c06e7e54&gt;] (prepare_namespace+0x120/0x180) from [&lt;c05018bc&gt;] (kernel_init+0x8/0xe4)<br />
[   31.087745] [&lt;c05018bc&gt;] (kernel_init+0x8/0xe4) from [&lt;c000df30&gt;] (ret_from_fork+0x14/0x24)<br />
<br />
The USB stick is labeled &quot;rootfs&quot;:<br />
/dev/sda1: LABEL=&quot;rootfs&quot; UUID=&quot;f260bcee-8c9d-4e41-a795-752752e9b152&quot; TYPE=&quot;ext2&quot;<br />
<br />
And the environment is set up to &quot;rootfs&quot; label: <br />
usb_init=run usb_scan ; setenv usb_root LABEL=rootfs<br />
<br />
What did I miss?<br />
<br />
<br />
*** THIS IS SOLVED, I tried SHYD´s 3.9.5 kernel and it worked out of the box, I have no idea what his kernel includes/excludes, but it works :-) ***]]></description>
            <dc:creator>wolfgangn</dc:creator>
            <category>Debian</category>
            <pubDate>Thu, 27 Jun 2013 12:03:25 -0500</pubDate>
        </item>
        <item>
            <guid>https://forum.doozan.com/read.php?2,7676,12728#msg-12728</guid>
            <title>Re: Linux 3.3.2 kernel for Dockstar, GoFlex and many others</title>
            <link>https://forum.doozan.com/read.php?2,7676,12728#msg-12728</link>
            <description><![CDATA[ Hi,<br />
have you found kernel headers?<br />
<br />
Thanks,<br />
Mario]]></description>
            <dc:creator>mgiammarco</dc:creator>
            <category>Debian</category>
            <pubDate>Thu, 13 Jun 2013 06:32:56 -0500</pubDate>
        </item>
        <item>
            <guid>https://forum.doozan.com/read.php?2,7676,12720#msg-12720</guid>
            <title>Re: Linux 3.3.2 kernel for Dockstar, GoFlex and many others</title>
            <link>https://forum.doozan.com/read.php?2,7676,12720#msg-12720</link>
            <description><![CDATA[ Deleted the file, but still does not boot. I think I have to get a serial cable to see what fails...<br />
<br />
Thank you for your reply!]]></description>
            <dc:creator>wolfgangn</dc:creator>
            <category>Debian</category>
            <pubDate>Wed, 12 Jun 2013 14:26:54 -0500</pubDate>
        </item>
        <item>
            <guid>https://forum.doozan.com/read.php?2,7676,12718#msg-12718</guid>
            <title>Re: Linux 3.3.2 kernel for Dockstar, GoFlex and many others</title>
            <link>https://forum.doozan.com/read.php?2,7676,12718#msg-12718</link>
            <description><![CDATA[ @wolfgangn,<br />
<br />
when updating to wheezy just the other day, I ran into a problem I had long since forgotten: when using the same stick on different machines, it seemingly leads to the second one not &quot;booting&quot;, when, in fact, it just does not get an IP-Address. In netconsole, it will look as if it was stuck at &quot;Starting kernel ...&quot; The reason is the file<br />
<pre class="bbcode">
/etc/udev/rules.d/70-persistent-net.rules</pre>
which is newly generated via<br />
<pre class="bbcode">
/lib/udev/rules.d/75-persistent-net-generator.rules</pre>
<br />
Myself, I always remove these two files and never had any problem with that.]]></description>
            <dc:creator>chessplayer</dc:creator>
            <category>Debian</category>
            <pubDate>Wed, 12 Jun 2013 08:23:05 -0500</pubDate>
        </item>
        <item>
            <guid>https://forum.doozan.com/read.php?2,7676,12701#msg-12701</guid>
            <title>Re: Linux 3.3.2 kernel for Dockstar, GoFlex and many others</title>
            <link>https://forum.doozan.com/read.php?2,7676,12701#msg-12701</link>
            <description><![CDATA[ Yes the uBoot is recent. I am certain because i also tried a fresh install of wheezy with another usb stick. The install script did check the uBoot and reported an up-to-date one and did not flash a new one.<br />
<br />
Sadly i don´t own a serial cable and can not provide any more info other than the netconsole output which stops at &quot;Starting kernel...&quot;. What do you mean by changing the machid? I don´t even know what that is :-)<br />
<br />
EDIT: Sorry, didn´t read the complete thread you posted. I will try the machid setting tomorrow..<br />
<br />
EDIT 2: Did try &quot;c11&quot; for machid ( because of arcNumber=3089 ), did not boot. Tried &quot;dd6&quot;, not even the rescue system from nand would boot anymore and i had to fix it via netconsole. What is the correct setting for a Goflex Net?]]></description>
            <dc:creator>wolfgangn</dc:creator>
            <category>Debian</category>
            <pubDate>Mon, 10 Jun 2013 17:14:14 -0500</pubDate>
        </item>
        <item>
            <guid>https://forum.doozan.com/read.php?2,7676,12700#msg-12700</guid>
            <title>Re: Linux 3.3.2 kernel for Dockstar, GoFlex and many others</title>
            <link>https://forum.doozan.com/read.php?2,7676,12700#msg-12700</link>
            <description><![CDATA[ Did you already update your uBoot?<br />
<a href="http://forum.doozan.com/read.php?3,6965"  rel="nofollow">http://forum.doozan.com/read.php?3,6965</a><br />
<br />
But be careful - for some reason I needed to change my machid after this update to get any kernel up and running.<br />
But I assume, you have a working serial console, don&#039;t you?]]></description>
            <dc:creator>Sven</dc:creator>
            <category>Debian</category>
            <pubDate>Mon, 10 Jun 2013 16:32:51 -0500</pubDate>
        </item>
        <item>
            <guid>https://forum.doozan.com/read.php?2,7676,12699#msg-12699</guid>
            <title>Re: Linux 3.3.2 kernel for Dockstar, GoFlex and many others</title>
            <link>https://forum.doozan.com/read.php?2,7676,12699#msg-12699</link>
            <description><![CDATA[ Hi,<br />
<br />
I tried many kernels, including this 3.8.4 from prodigy7. But none of them will boot, my Goflex Net is stuck at &quot;Starting kernel...&quot;. The 3.3.2-kirkwood-dg kernel boots fine from an ext2 usb stick and two SATA HDD attached. Any ideas what is wrong with my config? This is my environment:<br />
<br />
ethact=egiga0<br />
bootdelay=3<br />
baudrate=115200<br />
mainlineLinux=yes<br />
console=ttyS0,115200<br />
led_init=green blinking<br />
led_exit=green off<br />
led_error=orange blinking<br />
mtdparts=mtdparts=orion_nand:1M(u-boot),4M(uImage),32M(rootfs),-(data)<br />
mtdids=nand0=orion_nand<br />
partition=nand0,2<br />
stdin=serial<br />
stdout=serial<br />
stderr=serial<br />
rescue_set_bootargs=setenv bootargs console=$console ubi.mtd=2 root=ubi0:rootfs ro rootfstype=ubifs $mtdparts $rescue_custom_params<br />
rescue_bootcmd=if test $rescue_installed -eq 1; then run rescue_set_bootargs; nand read.e 0x800000 0x100000 0x400000; bootm 0x800000; else run pogo_bootcmd; fi<br />
pogo_bootcmd=if fsload uboot-original-mtd0.kwb; then go 0x800200; fi<br />
force_rescue=0<br />
force_rescue_bootcmd=if test $force_rescue -eq 1 || ext2load usb 0:1 0x1700000 /rescueme 1 || fatload usb 0:1 0x1700000 /rescueme.txt 1; then run rescue_bootcmd; fi<br />
ubifs_mtd=3<br />
ubifs_set_bootargs=setenv bootargs console=$console ubi.mtd=$ubifs_mtd root=ubi0:rootfs rootfstype=ubifs $mtdparts $ubifs_custom_params<br />
ubifs_bootcmd=run ubifs_set_bootargs; if ubi part data &amp;&amp; ubifsmount rootfs &amp;&amp; ubifsload 0x800000 /boot/uImage &amp;&amp; ubifsload 0x1100000 /boot/uInitrd; then bootm 0x800000 0x1100000; fi<br />
usb_scan=usb_scan_done=0;for scan in $usb_scan_list; do run usb_scan_$scan; if test $usb_scan_done -eq 0 &amp;&amp; ext2load usb $usb 0x800000 /boot/uImage 1; then usb_scan_done=1; echo &quot;Found bootable drive on usb $usb&quot;; setenv usb_device $usb; setenv usb_root /dev/$dev; fi; done<br />
usb_scan_list=1 2 3 4<br />
usb_scan_1=usb=0:1 dev=sda1<br />
usb_scan_2=usb=1:1 dev=sdb1<br />
usb_scan_3=usb=2:1 dev=sdc1<br />
usb_scan_4=usb=3:1 dev=sdd1<br />
usb_device=0:1<br />
usb_root=/dev/sda1<br />
usb_rootfstype=ext2<br />
usb_rootdelay=10<br />
usb_set_bootargs=setenv bootargs console=$console root=$usb_root rootdelay=$usb_rootdelay rootfstype=$usb_rootfstype $mtdparts $usb_custom_params<br />
usb_bootcmd=run usb_init; run usb_set_bootargs; run usb_boot<br />
usb_boot=mw 0x800000 0 1; ext2load usb $usb_device 0x800000 /boot/uImage; if ext2load usb $usb_device 0x1100000 /boot/uInitrd; then bootm 0x800000 0x1100000; else bootm 0x800000; fi<br />
bootcmd=usb start; run force_rescue_bootcmd; run ubifs_bootcmd; run usb_bootcmd; usb stop; run rescue_bootcmd; run pogo_bootcmd; reset<br />
ethaddr=00:10:75:26:69:81<br />
rescue_installed=1<br />
arcNumber=3089<br />
serverip=10.11.11.20<br />
ipaddr=10.11.11.30<br />
if_netconsole=ping $serverip<br />
preboot=run if_netconsole start_netconsole<br />
start_netconsole=setenv ncip 10.11.11.20; setenv bootdelay 10; setenv stdin nc; setenv stdout nc; setenv stderr nc; version;<br />
usb_init=run usb_scan ; setenv usb_root LABEL=rootfs<br />
<br />
Regards,<br />
Wolfgang]]></description>
            <dc:creator>wolfgangn</dc:creator>
            <category>Debian</category>
            <pubDate>Mon, 10 Jun 2013 16:22:32 -0500</pubDate>
        </item>
        <item>
            <guid>https://forum.doozan.com/read.php?2,7676,12485#msg-12485</guid>
            <title>Re: Linux 3.3.2 kernel for Dockstar, GoFlex and many others</title>
            <link>https://forum.doozan.com/read.php?2,7676,12485#msg-12485</link>
            <description><![CDATA[ prodigy7 Wrote:<br />
-------------------------------------------------------<br />
. So if the package is<br />
&gt; installed with dpkg, directly the uImage and<br />
&gt; uInitrd is refreshed in /boot and nothing more is<br />
&gt; to do!<br />
... except maybe to save the old uImage and uInitrd before the installation. But thank you, I always had to look for the commands to create the files in the forum.]]></description>
            <dc:creator>HellG</dc:creator>
            <category>Debian</category>
            <pubDate>Wed, 15 May 2013 04:52:31 -0500</pubDate>
        </item>
        <item>
            <guid>https://forum.doozan.com/read.php?2,7676,12476#msg-12476</guid>
            <title>Re: Linux 3.3.2 kernel for Dockstar, GoFlex and many others</title>
            <link>https://forum.doozan.com/read.php?2,7676,12476#msg-12476</link>
            <description><![CDATA[ Ok, here is the 3.8.4 kernel, compiled with ipv6 and netfilter (iptables) support:<br />
<a href="http://download.prodigy7.de/files/packages/kirkwood/kernel/"  rel="nofollow">http://download.prodigy7.de/files/packages/kirkwood/kernel/</a><br />
<br />
Because I&#039;ve changed the name from dockstar to kirkwood, the dpkg package manager detect the kernel type and install the kernel additionally with mkimage on pogo plug v2. So if the package is installed with dpkg, directly the uImage and uInitrd is refreshed in /boot and nothing more is to do!]]></description>
            <dc:creator>prodigy7</dc:creator>
            <category>Debian</category>
            <pubDate>Tue, 14 May 2013 11:51:25 -0500</pubDate>
        </item>
        <item>
            <guid>https://forum.doozan.com/read.php?2,7676,12475#msg-12475</guid>
            <title>Re: Linux 3.3.2 kernel for Dockstar, GoFlex and many others</title>
            <link>https://forum.doozan.com/read.php?2,7676,12475#msg-12475</link>
            <description><![CDATA[ Just for the records: If compiling with make-kpkg fails, try the following command.<pre class="bbcode">DEB_HOST_ARCH=armel fakeroot make-kpkg --arch arm --cross-compile arm-none-linux-gnueabi- --append-to-version=-kirkwood --revision=1.0 --initrd -j 2 kernel_image kernel_headers</pre>]]></description>
            <dc:creator>prodigy7</dc:creator>
            <category>Debian</category>
            <pubDate>Tue, 14 May 2013 10:29:36 -0500</pubDate>
        </item>
        <item>
            <guid>https://forum.doozan.com/read.php?2,7676,12466#msg-12466</guid>
            <title>Re: Linux 3.3.2 kernel for Dockstar, GoFlex and many others</title>
            <link>https://forum.doozan.com/read.php?2,7676,12466#msg-12466</link>
            <description><![CDATA[ All credits go to <a href="http://forum.doozan.com/profile.php?4,1"  rel="nofollow">Jeff</a> and <a href="http://forum.doozan.com/profile.php?2,501"  rel="nofollow">Davygravy</a>:<br />
<a href="http://forum.doozan.com/read.php?2,524"  rel="nofollow">http://forum.doozan.com/read.php?2,524</a><br />
<br />
But in newer crosscompile you&#039;ll need to use a workaround to compile armel packages... I&#039;ll try to find my steps to use tomorrow... (but I found it somewhere here or using Google...)]]></description>
            <dc:creator>Sven</dc:creator>
            <category>Debian</category>
            <pubDate>Mon, 13 May 2013 16:10:05 -0500</pubDate>
        </item>
        <item>
            <guid>https://forum.doozan.com/read.php?2,7676,12464#msg-12464</guid>
            <title>Re: Linux 3.3.2 kernel for Dockstar, GoFlex and many others</title>
            <link>https://forum.doozan.com/read.php?2,7676,12464#msg-12464</link>
            <description><![CDATA[ Hi sven!<br />
<br />
Thx for your quick response! Currently I compile a kernel with ipv6 enabled on my pogo plug (it takes a little bit time ;-) ). If so far it contains all I need, I would post the modified config file. If you could give me a quick how to, i would also generate a deb-Package!<br />
<br />
prodigy7]]></description>
            <dc:creator>prodigy7</dc:creator>
            <category>Debian</category>
            <pubDate>Mon, 13 May 2013 10:14:25 -0500</pubDate>
        </item>
        <item>
            <guid>https://forum.doozan.com/read.php?2,7676,12463#msg-12463</guid>
            <title>Re: Linux 3.3.2 kernel for Dockstar, GoFlex and many others</title>
            <link>https://forum.doozan.com/read.php?2,7676,12463#msg-12463</link>
            <description><![CDATA[ I tried to keep it as small as possible, but you&#039;re right - I could have compiled it at least with IPv6 modules...<br />
<br />
You could do so yourself using the provided DIFF to apply the changes to the original kernel:<br />
<a href="https://www.kernel.org/pub/linux/kernel/v3.x/linux-3.8.4.tar.bz2"  rel="nofollow">https://www.kernel.org/pub/linux/kernel/v3.x/linux-3.8.4.tar.bz2</a><br />
<br />
Otherwise please apply all your changes to the <i>.config</i> and send this, so I&#039;ll compile it for you.<br />
If you are not familiar with all of this - do you want IPv6 modules, or included in the kernel?]]></description>
            <dc:creator>Sven</dc:creator>
            <category>Debian</category>
            <pubDate>Mon, 13 May 2013 10:10:40 -0500</pubDate>
        </item>
        <item>
            <guid>https://forum.doozan.com/read.php?2,7676,12462#msg-12462</guid>
            <title>Re: Linux 3.3.2 kernel for Dockstar, GoFlex and many others</title>
            <link>https://forum.doozan.com/read.php?2,7676,12462#msg-12462</link>
            <description><![CDATA[ Sven Wrote:<br />
-------------------------------------------------------<br />
&gt; You could try my 3.8.4 with NSA320 enabled:<br />
&gt; <a href="https://www.dropbox.com/sh/ifotsfsca9kqg7q/Dda2OXW"  rel="nofollow">https://www.dropbox.com/sh/ifotsfsca9kqg7q/Dda2OXW</a><br />
&gt; SdZ<br />
<br />
Hi Sven,<br />
<br />
thank you very much for your refreshed kernel version. Could you maybe compile a ipv6 enabled version for me? For different reasons I can run the box only in a ipv6 network and currently I can&#039;t reach the box with your kernel because you&#039;ve disabled the complete ipv6 support.<br />
Would be very happy if that would be possible!<br />
<br />
Thx!<br />
prodigy7]]></description>
            <dc:creator>prodigy7</dc:creator>
            <category>Debian</category>
            <pubDate>Mon, 13 May 2013 09:59:19 -0500</pubDate>
        </item>
        <item>
            <guid>https://forum.doozan.com/read.php?2,7676,12428#msg-12428</guid>
            <title>Re: Linux 3.3.2 kernel for Dockstar, GoFlex and many others</title>
            <link>https://forum.doozan.com/read.php?2,7676,12428#msg-12428</link>
            <description><![CDATA[ I am using the uboot provided by davygravy in the first post here: <a href="http://forum.doozan.com/read.php?2,7806"  rel="nofollow">http://forum.doozan.com/read.php?2,7806</a>. Do you think the error could be uboot related?]]></description>
            <dc:creator>HellG</dc:creator>
            <category>Debian</category>
            <pubDate>Sat, 11 May 2013 02:16:48 -0500</pubDate>
        </item>
        <item>
            <guid>https://forum.doozan.com/read.php?2,7676,12427#msg-12427</guid>
            <title>Re: Linux 3.3.2 kernel for Dockstar, GoFlex and many others</title>
            <link>https://forum.doozan.com/read.php?2,7676,12427#msg-12427</link>
            <description><![CDATA[ HellG Wrote:<br />
-------------------------------------------------------<br />
&gt; Thank you, install in progress...<br />
&gt; Reboot... Works!<br />
&gt; ssh -l root nas.... Works!<br />
&gt; uname -a: &quot;Linux nas 3.8.4-dockstar #2 Wed Mar 27<br />
&gt; 17:10:47 CET 2013 armv5tel GNU/Linux&quot;<br />
&gt; <br />
&gt; So far, so good! I will see during the next days<br />
&gt; if I will have XFS errors again. Thanks again.<br />
<br />
which uboot are you using?]]></description>
            <dc:creator>gaogao</dc:creator>
            <category>Debian</category>
            <pubDate>Sat, 11 May 2013 02:03:05 -0500</pubDate>
        </item>
        <item>
            <guid>https://forum.doozan.com/read.php?2,7676,12416#msg-12416</guid>
            <title>Re: Linux 3.3.2 kernel for Dockstar, GoFlex and many others</title>
            <link>https://forum.doozan.com/read.php?2,7676,12416#msg-12416</link>
            <description><![CDATA[ Thank you, install in progress...<br />
Reboot... Works!<br />
ssh -l root nas.... Works!<br />
uname -a: &quot;Linux nas 3.8.4-dockstar #2 Wed Mar 27 17:10:47 CET 2013 armv5tel GNU/Linux&quot;<br />
<br />
So far, so good! I will see during the next days if I will have XFS errors again. Thanks again.]]></description>
            <dc:creator>HellG</dc:creator>
            <category>Debian</category>
            <pubDate>Fri, 10 May 2013 12:59:15 -0500</pubDate>
        </item>
        <item>
            <guid>https://forum.doozan.com/read.php?2,7676,12413#msg-12413</guid>
            <title>Re: Linux 3.3.2 kernel for Dockstar, GoFlex and many others</title>
            <link>https://forum.doozan.com/read.php?2,7676,12413#msg-12413</link>
            <description><![CDATA[ You could try my 3.8.4 with NSA320 enabled:<br />
<a href="https://www.dropbox.com/sh/ifotsfsca9kqg7q/Dda2OXWSdZ"  rel="nofollow">https://www.dropbox.com/sh/ifotsfsca9kqg7q/Dda2OXWSdZ</a>]]></description>
            <dc:creator>Sven</dc:creator>
            <category>Debian</category>
            <pubDate>Fri, 10 May 2013 04:00:37 -0500</pubDate>
        </item>
        <item>
            <guid>https://forum.doozan.com/read.php?2,7676,12410#msg-12410</guid>
            <title>Re: Linux 3.3.2 kernel for Dockstar, GoFlex and many others</title>
            <link>https://forum.doozan.com/read.php?2,7676,12410#msg-12410</link>
            <description><![CDATA[ Hi,<br />
does anybody use xfs filesystem with this kernel? I have my data on a xfs filesystem and face problems now and then that the filesystem cannot be mounted after reboot and I have to manually repair (with &quot;-L&quot; to wipe the journal) it. First I thought it is related to my old disks (WD10EACS, 5 years) on a GoFlex Net but after changing to a NSA320 with brand new harddisks (WD10EURX) I have the same problems. <br />
Is there maybe another kernel version available for the NSA320 I could use and see if I still face the same errors?<br />
<br />
HellG]]></description>
            <dc:creator>HellG</dc:creator>
            <category>Debian</category>
            <pubDate>Thu, 09 May 2013 15:13:10 -0500</pubDate>
        </item>
        <item>
            <guid>https://forum.doozan.com/read.php?2,7676,12262#msg-12262</guid>
            <title>Re: Linux 3.3.2 kernel for Dockstar, GoFlex and many others</title>
            <link>https://forum.doozan.com/read.php?2,7676,12262#msg-12262</link>
            <description><![CDATA[ ok, thanks a lot!<br />
------------------<br />
<br />
next problem, I wanted to boot 3.2.0 stock wheezy I had in /boot<br />
<br />
so I tried to make it like this<br />
<pre class="bbcode">mkimage -A arm -O linux -T kernel -C none -a 0x00008000 -e 0x00008000 -n Linux-3.2.0-4 -d /boot/vmlinuz-3.2.0-4-kirkwood /boot/uImage
mkimage -A arm -O linux -T ramdisk -C gzip -a 0x00000000 -e 0x00000000 -n Initrd-3.2.0-4 -d /boot/initrd.img-3.2.0-4-kirkwood /boot/uInitrd</pre>
<br />
<a href="http://pastebin.com/Y3r45rj8"  rel="nofollow">netconsole</a> output is ok, but Linux don&#039;t boot. How I can restore my last bootable kernel? <br />
I was so euphoric so I didn&#039;t made a backup image of my system.]]></description>
            <dc:creator>bambo</dc:creator>
            <category>Debian</category>
            <pubDate>Wed, 17 Apr 2013 07:49:34 -0500</pubDate>
        </item>
        <item>
            <guid>https://forum.doozan.com/read.php?2,7676,12260#msg-12260</guid>
            <title>Re: Linux 3.3.2 kernel for Dockstar, GoFlex and many others</title>
            <link>https://forum.doozan.com/read.php?2,7676,12260#msg-12260</link>
            <description><![CDATA[ It just takes the files out of /dev/sda1 - and inside /boot/ dir.<br />
But your boot is located on a separate partition:<br />
<blockquote class="bbcode"><div><small>Quote<br /></small><strong></strong><br />/dev/sda1 on /boot</div></blockquote>
So a simple workaround to avoid these problems is to put a symbolic link named &#039;boot&#039; to point to itself on this partition. Don&#039;t know why this was renamed to boot1 on your partition and there was another boot dir on it...]]></description>
            <dc:creator>Sven</dc:creator>
            <category>Debian</category>
            <pubDate>Wed, 17 Apr 2013 05:15:41 -0500</pubDate>
        </item>
        <item>
            <guid>https://forum.doozan.com/read.php?2,7676,12259#msg-12259</guid>
            <title>Re: Linux 3.3.2 kernel for Dockstar, GoFlex and many others</title>
            <link>https://forum.doozan.com/read.php?2,7676,12259#msg-12259</link>
            <description><![CDATA[ <b>~Sven</b><br />
<pre class="bbcode">
root@pogo:/boot/# sfdisk -d /dev/sda
# partition table of /dev/sda
unit: sectors

/dev/sda1 : start=     2048, size=   450560, Id=83, bootable
/dev/sda2 : start=   452608, size=  5306368, Id=83
/dev/sda3 : start=  5758976, size=  2095104, Id=82
/dev/sda4 : start=        0, size=        0, Id= 0
root@pogo:/boot/# mount
none on /sys type sysfs (rw,nosuid,nodev,noexec,relatime)
none on /proc type proc (rw,nosuid,nodev,noexec,relatime)
none on /dev type devtmpfs (rw,relatime,size=125224k,nr_inodes=31306,mode=755)
none on /dev/pts type devpts (rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=000)
/dev/sda2 on / type ext4 (rw,noatime,user_xattr,barrier=1,data=ordered)
tmpfs on /run type tmpfs (rw,nosuid,noexec,relatime,size=25552k,mode=755)
tmpfs on /run/lock type tmpfs (rw,nosuid,nodev,noexec,relatime,size=5120k)
tmpfs on /run/shm type tmpfs (rw,nosuid,nodev,noexec,relatime,size=260600k)
/dev/sda1 on /boot type ext2 (ro,relatime,errors=continue)
tmpfs on /tmp type tmpfs (rw,relatime)
root@pogo:~/# 
root@pogo:~/# cat /etc/fstab
# /etc/fstab: static file system information.
#
# &lt;file system&gt;	&lt;mount point&gt;	&lt;type&gt;	&lt;options&gt;		&lt;dump&gt;	&lt;pass&gt;
#/dev/root	/		ext2	noatime,errors=remount-ro 0	1
/dev/sda1	/boot		ext2	ro			0	0
/dev/sda2	/		ext4	noatime			0	1
/dev/sda3	none		swap	sw			0	0
tmpfs		/tmp		tmpfs	defaults		0	0</pre>
<br />
So I copy the stuff from /boot to /boot/boot and voilà 3.8.4 Kernel booted! I don&#039;t understand the mechanist why it&#039;s happen, but you guys are saints.<br />
<br />
Why uBoot takes /boot/boot stuff for booting?]]></description>
            <dc:creator>bambo</dc:creator>
            <category>Debian</category>
            <pubDate>Wed, 17 Apr 2013 05:02:22 -0500</pubDate>
        </item>
        <item>
            <guid>https://forum.doozan.com/read.php?2,7676,12256#msg-12256</guid>
            <title>Re: Linux 3.3.2 kernel for Dockstar, GoFlex and many others</title>
            <link>https://forum.doozan.com/read.php?2,7676,12256#msg-12256</link>
            <description><![CDATA[ Well - but it still looks funny. &#039;mkimage&#039; reports the same sizes as you can see in the listing, but uBoot does read other files:<br />
<blockquote class="bbcode"><div><small>Quote<br /></small><strong></strong><br />Loading file &quot;/boot/uImage&quot; from usb device 0:1 (usbda1)<br />
2081852 bytes read<br />
Loading file &quot;/boot/uInitrd&quot; from usb device 0:1 (usbda1)<br />
5035488 bytes read</div></blockquote>
What&#039;s the content of /boot/boot?<br />
And can you additionally tell us something about your partitioning? The output of &#039;sfdisk -d /dev/sda&#039; and &#039;mount&#039;?<br />
<br />
Maybe it&#039;s sufficient to change the link and dir inside your boot (partition?):<br />
<pre class="bbcode">mv /boot/boot /boot/boot.dir
mv /boot/boot1 /boot/boot</pre>]]></description>
            <dc:creator>Sven</dc:creator>
            <category>Debian</category>
            <pubDate>Wed, 17 Apr 2013 01:27:12 -0500</pubDate>
        </item>
    </channel>
</rss>
