summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Lee <john_lee@openmoko.org>2008-02-27 07:26:33 +0000
committerOpenmoko anonymizer key <devel@lists.openmoko.org>2008-02-27 07:26:33 +0000
commitb14906e8fa695a85b9ddf27838c959be1c8a5fad (patch)
treec18548b8b24f6b44cd0ac145aeebdf716675ac9d
parentbcfeac1803f50b545a019a19555f7c7e925a76c5 (diff)
linux-openmoko: remove 2.6.24 to solve merge conflict from upstream
-rw-r--r--packages/linux/linux-openmoko_2.6.24.bb68
1 files changed, 0 insertions, 68 deletions
diff --git a/packages/linux/linux-openmoko_2.6.24.bb b/packages/linux/linux-openmoko_2.6.24.bb
deleted file mode 100644
index 2fef712b57..0000000000
--- a/packages/linux/linux-openmoko_2.6.24.bb
+++ /dev/null
@@ -1,68 +0,0 @@
-require linux.inc
-require linux-openmoko.inc
-
-DESCRIPTION = "Linux 2.6.x (development) kernel for FIC SmartPhones shipping w/ OpenMoko"
-VANILLA_VERSION = "2.6.24"
-KERNEL_RELEASE = "2.6.24"
-
-# need to synchronize with LOCALVERSION, if set
-KERNEL_VERSION = "${KERNEL_RELEASE}"
-
-PV = "${VANILLA_VERSION}+svnr${SRCREV}"
-PR = "r3"
-
-KERNEL_IMAGETYPE = "uImage"
-UBOOT_ENTRYPOINT = "30008000"
-
-##############################################################
-# source and patches
-#
-SRCREV_FORMAT = "patches-rconfig"
-
-SRC_URI = "${KERNELORG_MIRROR}/pub/linux/kernel/v2.6/linux-${VANILLA_VERSION}.tar.bz2 \
- svn://svn.openmoko.org/branches/src/target/kernel/2.6.24.x;module=patches;proto=http;name=patches \
- svn://svn.openmoko.org/branches/src/target/kernel/2.6.24.x;module=config;proto=http;name=config "
-
-S = "${WORKDIR}/linux-${VANILLA_VERSION}"
-
-##############################################################
-# kernel image resides on a seperate flash partition (for now)
-#
-ALLOW_EMPTY = "1"
-
-COMPATIBLE_HOST = "arm.*-linux"
-COMPATIBLE_MACHINE = 'fic-gta01|fic-gta02'
-
-CMDLINE = "unused -- bootloader passes ATAG list"
-
-###############################################################
-# module configs specific to this kernel
-#
-
-# usb
-module_autoload_ohci-hcd = "ohci-hcd"
-module_autoload_hci_usb = "hci_usb"
-module_autoload_g_ether = "g_ether"
-# audio
-module_autoload_snd-soc-neo1973-wm8753 = "snd-soc-neo1973-wm8753"
-module_autoload_snd-soc-neo1973-gta02-wm8753 = "snd-soc-neo1973-gta02-wm8753"
-module_autoload_snd-pcm-oss = "snd-pcm-oss"
-module_autoload_snd-mixer-oss = "snd-mixer-oss"
-# sd/mmc
-module_autoload_s3cmci = "s3cmci"
-
-python do_patch_prepend() {
- def runcmd(cmd):
- import commands
- (status, output) = commands.getstatusoutput(cmd)
- if status != 0:
- raise Exception, "Status %i: %s" % (status >> 8, output)
- return output
- runcmd('mv %(WORKDIR)s/patches %(S)s/patches && cd %(S)s && '
- 'quilt push -av && mv patches patches.openmoko && '
- 'mv .pc .pc.old && mv %(WORKDIR)s/config/defconfig-%(KERNEL_RELEASE)s %(WORKDIR)s/defconfig' %
- {'WORKDIR': bb.data.getVar('WORKDIR', d, 1),
- 'S': bb.data.getVar('S', d, 1),
- 'KERNEL_RELEASE': bb.data.getVar('KERNEL_RELEASE', d, 1)})
- del runcmd
-}