diff options
author | Michael Lauer <mickey@vanille-media.de> | 2007-06-22 04:11:30 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2007-06-22 04:11:30 +0000 |
commit | fc10c989c666c95bb7ea41bc24bd14c396625286 (patch) | |
tree | e2581e3d3daa495ceb7e811171e2fd4e9eff333f /packages/linux | |
parent | e3a8f3cae69897452d0d1f98b3130060ab81a497 (diff) | |
parent | dc7fec62f475555fbeeec6448a4fd936f9c442d0 (diff) |
merge of '43f0162e257c27b3b68e689fc1e52fc7d296db3d'
and 'b1be59f70fc52177a67b15d29fc93897c548b5a8'
Diffstat (limited to 'packages/linux')
-rw-r--r-- | packages/linux/linux.inc | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/packages/linux/linux.inc b/packages/linux/linux.inc index d4f98f0978..3ee5e227f3 100644 --- a/packages/linux/linux.inc +++ b/packages/linux/linux.inc @@ -18,7 +18,11 @@ KERNEL_IMAGETYPE_at32stk1000 = "uImage" KERNEL_IMAGETYPE_at91sam9263ek = "uImage" # Specify the commandline for you device here: + +#boot from mmc CMDLINE_at91sam9263ek = "mem=64M console=ttyS0,115200 root=/dev/mmcblk0p1 rootfstype=ext2 rootdelay=5" +#boot from nfs +#CMDLINE_at91sam9263ek = "mem=64M console=ttyS0,115200 root=301 root=/dev/nfs nfsroot=172.20.3.1:/data/at91 ip=172.20.0.5:::255.255.0.0" do_configure_prepend() { echo "" > ${S}/.config @@ -43,11 +47,11 @@ do_configure_prepend() { do_install_prepend() { if test -e arch/${ARCH}/boot/Image ; then - ln -f arch/arm/boot/Image arch/arm/boot/uImage + ln -f arch/${ARCH}/boot/Image arch/${ARCH}/boot/uImage fi if test -e arch/${ARCH}/boot/images/uImage ; then - ln -f arch/arm/boot/images/uImage arch/arm/boot/uImage + ln -f arch/${ARCH}/boot/images/uImage arch/${ARCH}/boot/uImage fi } |