diff options
author | Ulf Samuelsson <ulf.samuelsson@atmel.com> | 2008-12-29 16:25:22 +0100 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@koansoftware.com> | 2009-01-16 15:50:15 +0100 |
commit | 48fb51ab6a3eab956496ce09ca3015e38f581bf8 (patch) | |
tree | ef79f87d88ca720c894f3b94951abe870af8e022 /packages/linux/at91_2.6.28.bb | |
parent | 24995e91859cced3a4f85bc4b9a5534ef191db5b (diff) |
linux: added 2.6.28 for at91sam9263ek (based on ulf/atmel branch)
- recipe cleaned
- defconfig changes:
- NFS root enabled
- preempt, no hz, high res timers, cpu idle enabled
- EABI, Thumb support enabled
- watchdog enabled
- legacy PTYs, deprecated sysfs disabled
- and some others
Diffstat (limited to 'packages/linux/at91_2.6.28.bb')
-rw-r--r-- | packages/linux/at91_2.6.28.bb | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/packages/linux/at91_2.6.28.bb b/packages/linux/at91_2.6.28.bb new file mode 100644 index 0000000000..a24dad3ee5 --- /dev/null +++ b/packages/linux/at91_2.6.28.bb @@ -0,0 +1,36 @@ +require linux.inc + +KERNEL_RELEASE = "2.6.28" +PV = "2.6.28" +PR = "r0" + +DEPENDS += "u-boot-utils-native" +DEPENDS += "ipkg-utils-native" + +S = "${WORKDIR}/linux-${KERNEL_RELEASE}" + +# Mark archs/machines that this kernel supports +DEFAULT_PREFERENCE = "-1" + +DEFAULT_PREFERENCE_at91sam9260ek = "1" +CMDLINE_at91sam9260ek = "mem=64M console=ttyS0,115200 root=/dev/mtdblock0 rw rootfstype=jffs2" +FILES_kernel-image_at91sam9260ek = "" + +DEFAULT_PREFERENCE_at91sam9261ek = "1" +CMDLINE_at91sam9261ek = "mem=64M console=ttyS0,115200 root=/dev/mtdblock0 rw rootfstype=jffs2" +FILES_kernel-image_at91sam9261ek = "" + +DEFAULT_PREFERENCE_at91sam9263ek = "1" +CMDLINE_at91sam9263ek = "mem=64M console=ttyS0,115200 root=/dev/mtdblock0 rw rootfstype=jffs2" +FILES_kernel-image_at91sam9263ek = "" + +DEFAULT_PREFERENCE_at91sam9g20ek = "1" +CMDLINE_at91sam9g20ek = "mem=64M console=ttyS0,115200 root=/dev/mtdblock0 rw rootfstype=jffs2" +FILES_kernel-image_at91sam9g20ek = "" + + +SRC_URI = "${KERNELORG_MIRROR}/pub/linux/kernel/v2.6/linux-${KERNEL_RELEASE}.tar.bz2 \ + file://linux-2.6.28-at91.patch.bz2;patch=1 \ + file://linux-2.6.28-exp.patch.bz2;patch=1 \ + file://defconfig \ + " |