* [PATCH 0/3] kernel: rename supported kernel to linux-yocto
@ 2010-11-15 16:56 Bruce Ashfield
2010-11-15 16:56 ` [PATCH 1/3] linux-wrs: rename " Bruce Ashfield
` (3 more replies)
0 siblings, 4 replies; 10+ messages in thread
From: Bruce Ashfield @ 2010-11-15 16:56 UTC (permalink / raw)
To: rpurdie; +Cc: yocto, poky
This is the first of several staged changes to update the
kernel support for the 1.0 release.
This series is step 1:
- rename the supported kernel to 'linux-yocto' and update
the boards, and recipes that have references to linux-wrs.
Step 2 will refactor the code into reusable blocks
Step 3 will do internal branch renames for scalability
Step 4 will launch and updated 2.6.34.x and 2.6.37-rcX kernel
This has been built and booted on the relevant boards. If I've
missed a reference to the existing kernel name, let me know
and I'll make those updates as well.
Pull URL: git://git.pokylinux.org/poky-contrib.git
Branch: zedd/kernel-rename
Browse: http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=zedd/kernel-rename
Thanks,
Bruce Ashfield <bruce.ashfield@windriver.com>
---
Bruce Ashfield (3):
linux-wrs: rename to linux-yocto
linux-yocto: update board configurations
linux-yocto: update SRCREVs for linux-yocto rename
meta-emenlow/conf/machine/emenlow.conf | 2 +-
...x-wrs_git.bbappend => linux-yocto_git.bbappend} | 0
.../conf/distro/include/poky-default-revisions.inc | 24 +++---
meta/conf/machine/atom-pc.conf | 2 +-
meta/conf/machine/beagleboard.conf | 2 +-
meta/conf/machine/include/qemu.inc | 2 +-
meta/conf/machine/mpc8315e-rdb.conf | 2 +-
meta/conf/machine/routerstationpro.conf | 2 +-
...-wrs_git.bb => linux-libc-headers-yocto_git.bb} | 4 +-
.../linux/{linux-wrs_git.bb => linux-yocto_git.bb} | 73 ++++++++++----------
10 files changed, 57 insertions(+), 56 deletions(-)
rename meta-emenlow/recipes/linux/{linux-wrs_git.bbappend => linux-yocto_git.bbappend} (100%)
rename meta/recipes-kernel/linux-libc-headers/{linux-libc-headers-wrs_git.bb => linux-libc-headers-yocto_git.bb} (91%)
rename meta/recipes-kernel/linux/{linux-wrs_git.bb => linux-yocto_git.bb} (74%)
^ permalink raw reply [flat|nested] 10+ messages in thread* [PATCH 1/3] linux-wrs: rename to linux-yocto 2010-11-15 16:56 [PATCH 0/3] kernel: rename supported kernel to linux-yocto Bruce Ashfield @ 2010-11-15 16:56 ` Bruce Ashfield 2010-11-15 16:56 ` [PATCH 2/3] linux-yocto: update board configurations Bruce Ashfield ` (2 subsequent siblings) 3 siblings, 0 replies; 10+ messages in thread From: Bruce Ashfield @ 2010-11-15 16:56 UTC (permalink / raw) To: rpurdie; +Cc: yocto, poky The existing preferred yocto kernel wasn't named appropriately and needs to be updated. In keeping the changes small and isolated, this commit simply renames the recipe and some internal variables. Future commits will refactor the code into more usable blocks. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com> --- .../linux-libc-headers-wrs_git.bb | 4 +- meta/recipes-kernel/linux/linux-wrs_git.bb | 73 ++++++++++---------- 2 files changed, 39 insertions(+), 38 deletions(-) diff --git a/meta/recipes-kernel/linux-libc-headers/linux-libc-headers-wrs_git.bb b/meta/recipes-kernel/linux-libc-headers/linux-libc-headers-wrs_git.bb index ab25e50..6ae6d5f 100644 --- a/meta/recipes-kernel/linux-libc-headers/linux-libc-headers-wrs_git.bb +++ b/meta/recipes-kernel/linux-libc-headers/linux-libc-headers-wrs_git.bb @@ -26,7 +26,7 @@ do_configure() { oe_runmake allnoconfig ARCH=$ARCH } -do_wrlinux_checkout() { +do_kernel_checkout() { if [ -d ${WORKDIR}/.git/refs/remotes/origin ]; then rm -rf ${S} mkdir ${S} @@ -38,7 +38,7 @@ do_wrlinux_checkout() { git checkout -f standard } -addtask wrlinux_checkout before do_patch after do_unpack +addtask kernel_checkout before do_patch after do_unpack do_compile () { } diff --git a/meta/recipes-kernel/linux/linux-wrs_git.bb b/meta/recipes-kernel/linux/linux-wrs_git.bb index 209648b..ef005ae 100644 --- a/meta/recipes-kernel/linux/linux-wrs_git.bb +++ b/meta/recipes-kernel/linux/linux-wrs_git.bb @@ -1,4 +1,4 @@ -DESCRIPTION = "Wind River Kernel" +DESCRIPTION = "Yocto Kernel" SECTION = "kernel" LICENSE = "GPL" @@ -13,16 +13,17 @@ PV = "2.6.34+git${SRCPV}" SRC_URI = "git://git.pokylinux.org/linux-2.6-windriver.git;protocol=git;fullclone=1;branch=${KBRANCH};name=machine \ git://git.pokylinux.org/linux-2.6-windriver.git;protocol=git;noclone=1;branch=wrs_meta;name=meta" -WRMACHINE = "UNDEFINED" -WRMACHINE_qemux86 = "common_pc" -WRMACHINE_qemux86-64 = "common_pc_64" -WRMACHINE_qemuppc = "qemu_ppc32" -WRMACHINE_qemumips = "mti_malta32_be" -WRMACHINE_qemuarm = "arm_versatile_926ejs" -WRMACHINE_atom-pc = "atom-pc" -WRMACHINE_routerstationpro = "routerstationpro" -WRMACHINE_mpc8315e-rdb = "fsl-mpc8315e-rdb" -WRMACHINE_beagleboard = "beagleboard" +# map the poky machine to a 'kernel machine' +KMACHINE = "UNDEFINED" +KMACHINE_qemux86 = "common_pc" +KMACHINE_qemux86-64 = "common_pc_64" +KMACHINE_qemuppc = "qemu_ppc32" +KMACHINE_qemumips = "mti_malta32_be" +KMACHINE_qemuarm = "arm_versatile_926ejs" +KMACHINE_atom-pc = "atom-pc" +KMACHINE_routerstationpro = "routerstationpro" +KMACHINE_mpc8315e-rdb = "fsl-mpc8315e-rdb" +KMACHINE_beagleboard = "beagleboard" # Determine which branch to fetch and build. Not all branches are in the # upstream repo (but will be locally created after the fetchers run) so @@ -36,11 +37,11 @@ WRMACHINE_beagleboard = "beagleboard" python __anonymous () { import bb, re - bb.data.setVar("KBRANCH", "${WRMACHINE}-${LINUX_KERNEL_TYPE}", d) - mach = bb.data.getVar("WRMACHINE", d, 1) + bb.data.setVar("KBRANCH", "${KMACHINE}-${LINUX_KERNEL_TYPE}", d) + mach = bb.data.getVar("KMACHINE", d, 1) if mach == "UNDEFINED": bb.data.setVar("KBRANCH", "standard", d) - bb.data.setVar("WRMACHINE", "${MACHINE}", d) + bb.data.setVar("KMACHINE", "${MACHINE}", d) # track the global configuration on a bootstrapped BSP bb.data.setVar("SRCREV_machine", "${SRCREV_meta}", d) bb.data.setVar("BOOTSTRAP", "t", d) @@ -53,7 +54,7 @@ LINUX_VERSION_EXTENSION = "-wr-${LINUX_KERNEL_TYPE}" PR = "r13" S = "${WORKDIR}/linux" -B = "${WORKDIR}/linux-${WRMACHINE}-${LINUX_KERNEL_TYPE}-build" +B = "${WORKDIR}/linux-${KMACHINE}-${LINUX_KERNEL_TYPE}-build" # functionality flags KERNEL_REVISION_CHECKING ?= "t" @@ -66,9 +67,9 @@ do_patch() { fi # simply ensures that a branch of the right name has been created - createme ${ARCH} ${WRMACHINE}-${LINUX_KERNEL_TYPE} ${defconfig} + createme ${ARCH} ${KMACHINE}-${LINUX_KERNEL_TYPE} ${defconfig} if [ $? -ne 0 ]; then - echo "ERROR. Could not create ${WRMACHINE}-${LINUX_KERNEL_TYPE}" + echo "ERROR. Could not create ${KMACHINE}-${LINUX_KERNEL_TYPE}" exit 1 fi @@ -78,14 +79,14 @@ do_patch() { fi updateme ${addon_features} ${ARCH} ${WORKDIR} if [ $? -ne 0 ]; then - echo "ERROR. Could not update ${WRMACHINE}-${LINUX_KERNEL_TYPE}" + echo "ERROR. Could not update ${KMACHINE}-${LINUX_KERNEL_TYPE}" exit 1 fi # executes and modifies the source tree as required - patchme ${WRMACHINE}-${LINUX_KERNEL_TYPE} + patchme ${KMACHINE}-${LINUX_KERNEL_TYPE} if [ $? -ne 0 ]; then - echo "ERROR. Could not modify ${WRMACHINE}-${LINUX_KERNEL_TYPE}" + echo "ERROR. Could not modify ${KMACHINE}-${LINUX_KERNEL_TYPE}" exit 1 fi } @@ -100,9 +101,9 @@ validate_branches() { if [ -n "${KERNEL_REVISION_CHECKING}" ]; then git show ${target_branch_head} > /dev/null 2>&1 if [ $? -eq 0 ]; then - echo "Forcing branch ${WRMACHINE}-${LINUX_KERNEL_TYPE} to ${target_branch_head}" - git branch -m ${WRMACHINE}-${LINUX_KERNEL_TYPE} ${WRMACHINE}-${LINUX_KERNEL_TYPE}-orig - git checkout -b ${WRMACHINE}-${LINUX_KERNEL_TYPE} ${target_branch_head} + echo "Forcing branch ${KMACHINE}-${LINUX_KERNEL_TYPE} to ${target_branch_head}" + git branch -m ${KMACHINE}-${LINUX_KERNEL_TYPE} ${KMACHINE}-${LINUX_KERNEL_TYPE}-orig + git checkout -b ${KMACHINE}-${LINUX_KERNEL_TYPE} ${target_branch_head} else echo "ERROR ${target_branch_head} is not a valid commit ID." echo "The kernel source tree may be out of sync" @@ -127,9 +128,9 @@ validate_branches() { fi } -do_wrlinux_checkout() { +do_kernel_checkout() { if [ -d ${WORKDIR}/.git/refs/remotes/origin ]; then - echo "Fixing up git directory for ${WRMACHINE}-${LINUX_KERNEL_TYPE}" + echo "Fixing up git directory for ${KMACHINE}-${LINUX_KERNEL_TYPE}" rm -rf ${S} mkdir ${S} mv ${WORKDIR}/.git ${S} @@ -165,17 +166,17 @@ IFS=' # our initial checkout. So we do it a second time to be sure git checkout -f ${KBRANCH} } -do_wrlinux_checkout[dirs] = "${S}" +do_kernel_checkout[dirs] = "${S}" -addtask wrlinux_checkout before do_patch after do_unpack +addtask kernel_checkout before do_patch after do_unpack -do_wrlinux_configme() { - echo "Doing wrlinux configme" +do_kernel_configme() { + echo "Doing kernel configme" cd ${S} configme --reconfig if [ $? -ne 0 ]; then - echo "ERROR. Could not configure ${WRMACHINE}-${LINUX_KERNEL_TYPE}" + echo "ERROR. Could not configure ${KMACHINE}-${LINUX_KERNEL_TYPE}" exit 1 fi @@ -184,13 +185,13 @@ do_wrlinux_configme() { echo "CONFIG_LOCALVERSION="\"${LINUX_VERSION_EXTENSION}\" >> ${B}/.config } -do_wrlinux_configcheck() { +do_kernel_configcheck() { echo "[INFO] validating kernel configuration" cd ${B}/.. - kconf_check ${B}/.config ${B} ${S} ${B} ${LINUX_VERSION} ${WRMACHINE}-${LINUX_KERNEL_TYPE} + kconf_check ${B}/.config ${B} ${S} ${B} ${LINUX_VERSION} ${KMACHINE}-${LINUX_KERNEL_TYPE} } -do_wrlinux_link_vmlinux() { +do_kernel_link_vmlinux() { if [ ! -d "${B}/arch/${ARCH}/boot" ]; then mkdir ${B}/arch/${ARCH}/boot fi @@ -207,9 +208,9 @@ do_install_perf() { } do_patch[depends] = "kern-tools-native:do_populate_sysroot" -addtask wrlinux_configme before do_configure after do_patch -addtask wrlinux_link_vmlinux after do_compile before do_install -addtask wrlinux_configcheck after do_configure before do_compile +addtask kernel_configme before do_configure after do_patch +addtask kernel_link_vmlinux after do_compile before do_install +addtask kernel_configcheck after do_configure before do_compile inherit kernel -- 1.7.0.4 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH 2/3] linux-yocto: update board configurations 2010-11-15 16:56 [PATCH 0/3] kernel: rename supported kernel to linux-yocto Bruce Ashfield 2010-11-15 16:56 ` [PATCH 1/3] linux-wrs: rename " Bruce Ashfield @ 2010-11-15 16:56 ` Bruce Ashfield 2010-11-15 16:56 ` [PATCH 3/3] linux-yocto: update SRCREVs for linux-yocto rename Bruce Ashfield 2010-11-15 21:09 ` [poky] " Darren Hart 3 siblings, 0 replies; 10+ messages in thread From: Bruce Ashfield @ 2010-11-15 16:56 UTC (permalink / raw) To: rpurdie; +Cc: yocto, poky Now that linuy-wrs has been renamed linux-yocto, we need to rename and update an board configurations and append files. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com> --- meta-emenlow/conf/machine/emenlow.conf | 2 +- ...x-wrs_git.bbappend => linux-yocto_git.bbappend} | 0 meta/conf/machine/atom-pc.conf | 2 +- meta/conf/machine/beagleboard.conf | 2 +- meta/conf/machine/include/qemu.inc | 2 +- meta/conf/machine/mpc8315e-rdb.conf | 2 +- meta/conf/machine/routerstationpro.conf | 2 +- ...-wrs_git.bb => linux-libc-headers-yocto_git.bb} | 0 .../linux/{linux-wrs_git.bb => linux-yocto_git.bb} | 0 9 files changed, 6 insertions(+), 6 deletions(-) rename meta-emenlow/recipes/linux/{linux-wrs_git.bbappend => linux-yocto_git.bbappend} (100%) rename meta/recipes-kernel/linux-libc-headers/{linux-libc-headers-wrs_git.bb => linux-libc-headers-yocto_git.bb} (100%) rename meta/recipes-kernel/linux/{linux-wrs_git.bb => linux-yocto_git.bb} (100%) diff --git a/meta-emenlow/conf/machine/emenlow.conf b/meta-emenlow/conf/machine/emenlow.conf index 897f36e..0f9ed8a 100644 --- a/meta-emenlow/conf/machine/emenlow.conf +++ b/meta-emenlow/conf/machine/emenlow.conf @@ -16,7 +16,7 @@ MACHINE_FEATURES = "kernel26 screen keyboard pci usbhost ext2 ext3 x86 \ KERNEL_IMAGETYPE = "bzImage" -PREFERRED_PROVIDER_virtual/kernel = "linux-wrs" +PREFERRED_PROVIDER_virtual/kernel = "linux-yocto" PREFERRED_PROVIDER_libdrm = "libdrm-poulsbo" PREFERRED_PROVIDER_drm = "libdrm-poulsbo" PREFERRED_PROVIDER_virtual/libx11 = "libx11-trim" diff --git a/meta-emenlow/recipes/linux/linux-wrs_git.bbappend b/meta-emenlow/recipes/linux/linux-yocto_git.bbappend similarity index 100% rename from meta-emenlow/recipes/linux/linux-wrs_git.bbappend rename to meta-emenlow/recipes/linux/linux-yocto_git.bbappend diff --git a/meta/conf/machine/atom-pc.conf b/meta/conf/machine/atom-pc.conf index 61d3d94..7ca952a 100644 --- a/meta/conf/machine/atom-pc.conf +++ b/meta/conf/machine/atom-pc.conf @@ -13,7 +13,7 @@ MACHINE_FEATURES = "kernel26 screen keyboard pci usbhost ext2 ext3 x86 wifi \ KERNEL_IMAGETYPE = "bzImage" -PREFERRED_PROVIDER_virtual/kernel ?= "linux-wrs" +PREFERRED_PROVIDER_virtual/kernel ?= "linux-yocto" PREFERRED_PROVIDER_virtual/libx11 ?= "libx11-trim" PREFERRED_PROVIDER_virtual/libgl ?= "mesa-dri" PREFERRED_PROVIDER_virtual/xserver ?= "xserver-xf86-dri-lite" diff --git a/meta/conf/machine/beagleboard.conf b/meta/conf/machine/beagleboard.conf index d44b7aa..657bd36 100644 --- a/meta/conf/machine/beagleboard.conf +++ b/meta/conf/machine/beagleboard.conf @@ -22,7 +22,7 @@ EXTRA_IMAGECMD_jffs2 = "-lnp " # Guesswork SERIAL_CONSOLE = "115200 ttyS2" -PREFERRED_PROVIDER_virtual/kernel = "linux-wrs" +PREFERRED_PROVIDER_virtual/kernel = "linux-yocto" KERNEL_IMAGETYPE = "uImage" diff --git a/meta/conf/machine/include/qemu.inc b/meta/conf/machine/include/qemu.inc index 1ef639f..1b1b888 100644 --- a/meta/conf/machine/include/qemu.inc +++ b/meta/conf/machine/include/qemu.inc @@ -15,6 +15,6 @@ IMAGE_ROOTFS_SIZE_ext3 ?= "280000" RDEPENDS_kernel-base = "" # Use a common kernel recipe for all QEMU machines -PREFERRED_PROVIDER_virtual/kernel = "linux-wrs" +PREFERRED_PROVIDER_virtual/kernel = "linux-yocto" EXTRA_IMAGEDEPENDS += "qemu-native qemu-helper-native" diff --git a/meta/conf/machine/mpc8315e-rdb.conf b/meta/conf/machine/mpc8315e-rdb.conf index e42a9f2..3341186 100644 --- a/meta/conf/machine/mpc8315e-rdb.conf +++ b/meta/conf/machine/mpc8315e-rdb.conf @@ -13,4 +13,4 @@ SERIAL_CONSOLE = "115200 ttyS0" MACHINE_FEATURES = "kernel26 keyboard pci ext2 ext3 serial" -PREFERRED_PROVIDER_virtual/kernel = "linux-wrs" +PREFERRED_PROVIDER_virtual/kernel = "linux-yocto" diff --git a/meta/conf/machine/routerstationpro.conf b/meta/conf/machine/routerstationpro.conf index ecacc9b..485ee3c 100644 --- a/meta/conf/machine/routerstationpro.conf +++ b/meta/conf/machine/routerstationpro.conf @@ -12,7 +12,7 @@ MACHINE_FEATURES = "kernel26 screen keyboard pci usbhost ext2 ext3 \ KERNEL_IMAGETYPE = "vmlinux" KERNEL_ALT_IMAGETYPE = "vmlinux.bin" -PREFERRED_PROVIDER_virtual/kernel = "linux-wrs" +PREFERRED_PROVIDER_virtual/kernel = "linux-yocto" SERIAL_CONSOLE = "115200 ttyS0" diff --git a/meta/recipes-kernel/linux-libc-headers/linux-libc-headers-wrs_git.bb b/meta/recipes-kernel/linux-libc-headers/linux-libc-headers-yocto_git.bb similarity index 100% rename from meta/recipes-kernel/linux-libc-headers/linux-libc-headers-wrs_git.bb rename to meta/recipes-kernel/linux-libc-headers/linux-libc-headers-yocto_git.bb diff --git a/meta/recipes-kernel/linux/linux-wrs_git.bb b/meta/recipes-kernel/linux/linux-yocto_git.bb similarity index 100% rename from meta/recipes-kernel/linux/linux-wrs_git.bb rename to meta/recipes-kernel/linux/linux-yocto_git.bb -- 1.7.0.4 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH 3/3] linux-yocto: update SRCREVs for linux-yocto rename 2010-11-15 16:56 [PATCH 0/3] kernel: rename supported kernel to linux-yocto Bruce Ashfield 2010-11-15 16:56 ` [PATCH 1/3] linux-wrs: rename " Bruce Ashfield 2010-11-15 16:56 ` [PATCH 2/3] linux-yocto: update board configurations Bruce Ashfield @ 2010-11-15 16:56 ` Bruce Ashfield 2010-11-15 21:09 ` [poky] " Darren Hart 3 siblings, 0 replies; 10+ messages in thread From: Bruce Ashfield @ 2010-11-15 16:56 UTC (permalink / raw) To: rpurdie; +Cc: yocto, poky Now that linux-wrs has been renamed linux-yocto, we need to update the SRCREVs to have the new name. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com> --- .../conf/distro/include/poky-default-revisions.inc | 24 ++++++++++---------- 1 files changed, 12 insertions(+), 12 deletions(-) diff --git a/meta/conf/distro/include/poky-default-revisions.inc b/meta/conf/distro/include/poky-default-revisions.inc index ed8420f..be2d77c 100644 --- a/meta/conf/distro/include/poky-default-revisions.inc +++ b/meta/conf/distro/include/poky-default-revisions.inc @@ -82,18 +82,18 @@ SRCREV_pn-linux-omap-zoomsync ??= "015cbaf1035cd9a61d33a27de2a22902555db3c5" SRCREV_pn-linux-omap2 ??= "d3b3ae0fe6c71641da19c8de466ec366d39847e3" SRCREV_pn-linux-omap3 ??= "de1121fdb899f762b9e717f44eaf3fae7c00cd3e" SRCREV_pn-linux-omap3-pm ??= "totallybroken" -SRCREV_machine_pn-linux-wrs_qemuarm ?= "4f4177b4bea5b8858acc1eeb788d80b7af0df962" -SRCREV_machine_pn-linux-wrs_qemumips ?= "81f3cd467b9d51fa1dfa2d5939337cc756ae8061" -SRCREV_machine_pn-linux-wrs_qemuppc ?= "9ac0daee43dd19d8bea828cf79450c9748ae0daa" -SRCREV_machine_pn-linux-wrs_qemux86 ?= "0431115c9d720fee5bb105f6a7411efb4f851d26" -SRCREV_machine_pn-linux-wrs_qemux86-64 ?= "0431115c9d720fee5bb105f6a7411efb4f851d26" -SRCREV_machine_pn-linux-wrs_emenlow ?= "aae69fdf104b0a9d7b3710f808aac6ab303490f7" -SRCREV_machine_pn-linux-wrs_atom-pc ?= "0431115c9d720fee5bb105f6a7411efb4f851d26" -SRCREV_machine_pn-linux-wrs_routerstationpro ?= "2ec2edaf256dd8500ee3d4763fee6ca3ecd6da4b" -SRCREV_machine_pn-linux-wrs_mpc8315e-rdb ?= "986e6eb66c26007cee7916d5d12f4756e6b5436f" -SRCREV_machine_pn-linux-wrs_beagleboard ?= "0431115c9d720fee5bb105f6a7411efb4f851d26" -SRCREV_meta_pn-linux-wrs ?= "d1cd5c80ee97e81e130be8c3de3965b770f320d6" -SRCREV_pn-linux-libc-headers-wrs ??= "09a39c638dd65dc27c549c119abe1af2631b2ae0" +SRCREV_machine_pn-linux-yocto_qemuarm ?= "4f4177b4bea5b8858acc1eeb788d80b7af0df962" +SRCREV_machine_pn-linux-yocto_qemumips ?= "81f3cd467b9d51fa1dfa2d5939337cc756ae8061" +SRCREV_machine_pn-linux-yocto_qemuppc ?= "9ac0daee43dd19d8bea828cf79450c9748ae0daa" +SRCREV_machine_pn-linux-yocto_qemux86 ?= "0431115c9d720fee5bb105f6a7411efb4f851d26" +SRCREV_machine_pn-linux-yocto_qemux86-64 ?= "0431115c9d720fee5bb105f6a7411efb4f851d26" +SRCREV_machine_pn-linux-yocto_emenlow ?= "aae69fdf104b0a9d7b3710f808aac6ab303490f7" +SRCREV_machine_pn-linux-yocto_atom-pc ?= "0431115c9d720fee5bb105f6a7411efb4f851d26" +SRCREV_machine_pn-linux-yocto_routerstationpro ?= "2ec2edaf256dd8500ee3d4763fee6ca3ecd6da4b" +SRCREV_machine_pn-linux-yocto_mpc8315e-rdb ?= "986e6eb66c26007cee7916d5d12f4756e6b5436f" +SRCREV_machine_pn-linux-yocto_beagleboard ?= "0431115c9d720fee5bb105f6a7411efb4f851d26" +SRCREV_meta_pn-linux-yocto ?= "d1cd5c80ee97e81e130be8c3de3965b770f320d6" +SRCREV_pn-linux-libc-headers-yocto ??= "09a39c638dd65dc27c549c119abe1af2631b2ae0" SRCREV_pn-matchbox-config-gtk ??= "2081" SRCREV_pn-matchbox-desktop-sato ??= "76" SRCREV_pn-matchbox-desktop ??= "2096" -- 1.7.0.4 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [PATCH 0/3] kernel: rename supported kernel to linux-yocto 2010-11-15 16:56 [PATCH 0/3] kernel: rename supported kernel to linux-yocto Bruce Ashfield @ 2010-11-15 21:09 ` Darren Hart 2010-11-15 16:56 ` [PATCH 2/3] linux-yocto: update board configurations Bruce Ashfield ` (2 subsequent siblings) 3 siblings, 0 replies; 10+ messages in thread From: Darren Hart @ 2010-11-15 21:09 UTC (permalink / raw) To: Bruce Ashfield; +Cc: yocto, poky On 11/15/2010 08:56 AM, Bruce Ashfield wrote: > This is the first of several staged changes to update the > kernel support for the 1.0 release. > > This series is step 1: > > - rename the supported kernel to 'linux-yocto' and update > the boards, and recipes that have references to linux-wrs. > > Step 2 will refactor the code into reusable blocks > Step 3 will do internal branch renames for scalability > Step 4 will launch and updated 2.6.34.x and 2.6.37-rcX kernel > > This has been built and booted on the relevant boards. If I've > missed a reference to the existing kernel name, let me know > and I'll make those updates as well. > > Pull URL: git://git.pokylinux.org/poky-contrib.git > Branch: zedd/kernel-rename > Browse: http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=zedd/kernel-rename > > Thanks, > Bruce Ashfield<bruce.ashfield@windriver.com> > --- > > > Bruce Ashfield (3): > linux-wrs: rename to linux-yocto > linux-yocto: update board configurations > linux-yocto: update SRCREVs for linux-yocto rename From what I can tell these changes are not "bisectable" - the build would fail if all three are not applied. If I'm not missing something, I'd prefer to see these squashed into a single commit. -- Darren Hart Embedded Linux Kernel ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [poky] [PATCH 0/3] kernel: rename supported kernel to linux-yocto @ 2010-11-15 21:09 ` Darren Hart 0 siblings, 0 replies; 10+ messages in thread From: Darren Hart @ 2010-11-15 21:09 UTC (permalink / raw) To: Bruce Ashfield; +Cc: yocto, poky On 11/15/2010 08:56 AM, Bruce Ashfield wrote: > This is the first of several staged changes to update the > kernel support for the 1.0 release. > > This series is step 1: > > - rename the supported kernel to 'linux-yocto' and update > the boards, and recipes that have references to linux-wrs. > > Step 2 will refactor the code into reusable blocks > Step 3 will do internal branch renames for scalability > Step 4 will launch and updated 2.6.34.x and 2.6.37-rcX kernel > > This has been built and booted on the relevant boards. If I've > missed a reference to the existing kernel name, let me know > and I'll make those updates as well. > > Pull URL: git://git.pokylinux.org/poky-contrib.git > Branch: zedd/kernel-rename > Browse: http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=zedd/kernel-rename > > Thanks, > Bruce Ashfield<bruce.ashfield@windriver.com> > --- > > > Bruce Ashfield (3): > linux-wrs: rename to linux-yocto > linux-yocto: update board configurations > linux-yocto: update SRCREVs for linux-yocto rename From what I can tell these changes are not "bisectable" - the build would fail if all three are not applied. If I'm not missing something, I'd prefer to see these squashed into a single commit. -- Darren Hart Embedded Linux Kernel ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 0/3] kernel: rename supported kernel to linux-yocto 2010-11-15 21:09 ` [poky] " Darren Hart @ 2010-11-15 21:16 ` Bruce Ashfield -1 siblings, 0 replies; 10+ messages in thread From: Bruce Ashfield @ 2010-11-15 21:16 UTC (permalink / raw) To: Darren Hart; +Cc: yocto, poky On Mon, Nov 15, 2010 at 4:09 PM, Darren Hart <dvhart@linux.intel.com> wrote: > On 11/15/2010 08:56 AM, Bruce Ashfield wrote: >> >> This is the first of several staged changes to update the >> kernel support for the 1.0 release. >> >> This series is step 1: >> >> - rename the supported kernel to 'linux-yocto' and update >> the boards, and recipes that have references to linux-wrs. >> >> Step 2 will refactor the code into reusable blocks >> Step 3 will do internal branch renames for scalability >> Step 4 will launch and updated 2.6.34.x and 2.6.37-rcX kernel >> >> This has been built and booted on the relevant boards. If I've >> missed a reference to the existing kernel name, let me know >> and I'll make those updates as well. >> >> Pull URL: git://git.pokylinux.org/poky-contrib.git >> Branch: zedd/kernel-rename >> Browse: >> http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=zedd/kernel-rename >> >> Thanks, >> Bruce Ashfield<bruce.ashfield@windriver.com> >> --- >> >> >> Bruce Ashfield (3): >> linux-wrs: rename to linux-yocto >> linux-yocto: update board configurations >> linux-yocto: update SRCREVs for linux-yocto rename > > From what I can tell these changes are not "bisectable" - the build would > fail if all three are not applied. If I'm not missing something, I'd prefer > to see these squashed into a single commit. Definitely. Not bisectable, but I wanted to keep the changes logically separated, since it allowed a commit message that wasn't too long to read and be useful. Since there are several recipe categories, boards and layers involved, I made the choice to split things up. I typically insist on bisectable series as well, but have made exceptions :) I'm happy to squash things though, if Richard wants them squashed I'll resend .. or it might be quicker to rebase and squash on merge, either works for me. Bruce > > -- > Darren Hart > Embedded Linux Kernel > _______________________________________________ > poky mailing list > poky@yoctoproject.org > https://lists.yoctoproject.org/listinfo/poky > -- "Thou shalt not follow the NULL pointer, for chaos and madness await thee at its end" ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [poky] [PATCH 0/3] kernel: rename supported kernel to linux-yocto @ 2010-11-15 21:16 ` Bruce Ashfield 0 siblings, 0 replies; 10+ messages in thread From: Bruce Ashfield @ 2010-11-15 21:16 UTC (permalink / raw) To: Darren Hart; +Cc: yocto, poky On Mon, Nov 15, 2010 at 4:09 PM, Darren Hart <dvhart@linux.intel.com> wrote: > On 11/15/2010 08:56 AM, Bruce Ashfield wrote: >> >> This is the first of several staged changes to update the >> kernel support for the 1.0 release. >> >> This series is step 1: >> >> - rename the supported kernel to 'linux-yocto' and update >> the boards, and recipes that have references to linux-wrs. >> >> Step 2 will refactor the code into reusable blocks >> Step 3 will do internal branch renames for scalability >> Step 4 will launch and updated 2.6.34.x and 2.6.37-rcX kernel >> >> This has been built and booted on the relevant boards. If I've >> missed a reference to the existing kernel name, let me know >> and I'll make those updates as well. >> >> Pull URL: git://git.pokylinux.org/poky-contrib.git >> Branch: zedd/kernel-rename >> Browse: >> http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=zedd/kernel-rename >> >> Thanks, >> Bruce Ashfield<bruce.ashfield@windriver.com> >> --- >> >> >> Bruce Ashfield (3): >> linux-wrs: rename to linux-yocto >> linux-yocto: update board configurations >> linux-yocto: update SRCREVs for linux-yocto rename > > From what I can tell these changes are not "bisectable" - the build would > fail if all three are not applied. If I'm not missing something, I'd prefer > to see these squashed into a single commit. Definitely. Not bisectable, but I wanted to keep the changes logically separated, since it allowed a commit message that wasn't too long to read and be useful. Since there are several recipe categories, boards and layers involved, I made the choice to split things up. I typically insist on bisectable series as well, but have made exceptions :) I'm happy to squash things though, if Richard wants them squashed I'll resend .. or it might be quicker to rebase and squash on merge, either works for me. Bruce > > -- > Darren Hart > Embedded Linux Kernel > _______________________________________________ > poky mailing list > poky@yoctoproject.org > https://lists.yoctoproject.org/listinfo/poky > -- "Thou shalt not follow the NULL pointer, for chaos and madness await thee at its end" ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 0/3] kernel: rename supported kernel to linux-yocto 2010-11-15 21:09 ` [poky] " Darren Hart @ 2010-11-15 21:19 ` Bruce Ashfield -1 siblings, 0 replies; 10+ messages in thread From: Bruce Ashfield @ 2010-11-15 21:19 UTC (permalink / raw) To: Darren Hart; +Cc: yocto, poky On Mon, Nov 15, 2010 at 4:09 PM, Darren Hart <dvhart@linux.intel.com> wrote: > On 11/15/2010 08:56 AM, Bruce Ashfield wrote: >> >> This is the first of several staged changes to update the >> kernel support for the 1.0 release. >> >> This series is step 1: >> >> - rename the supported kernel to 'linux-yocto' and update >> the boards, and recipes that have references to linux-wrs. >> >> Step 2 will refactor the code into reusable blocks >> Step 3 will do internal branch renames for scalability >> Step 4 will launch and updated 2.6.34.x and 2.6.37-rcX kernel >> >> This has been built and booted on the relevant boards. If I've >> missed a reference to the existing kernel name, let me know >> and I'll make those updates as well. >> >> Pull URL: git://git.pokylinux.org/poky-contrib.git >> Branch: zedd/kernel-rename >> Browse: >> http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=zedd/kernel-rename >> >> Thanks, >> Bruce Ashfield<bruce.ashfield@windriver.com> >> --- >> >> >> Bruce Ashfield (3): >> linux-wrs: rename to linux-yocto >> linux-yocto: update board configurations >> linux-yocto: update SRCREVs for linux-yocto rename > > From what I can tell these changes are not "bisectable" - the build would > fail if all three are not applied. If I'm not missing something, I'd prefer > to see these squashed into a single commit. Hmmm. I was largely thinking about another patch series. The commit messages for these are pretty small. I've squashed and updated my contrib branch. Cheers, Bruce > > -- > Darren Hart > Embedded Linux Kernel > _______________________________________________ > poky mailing list > poky@yoctoproject.org > https://lists.yoctoproject.org/listinfo/poky > -- "Thou shalt not follow the NULL pointer, for chaos and madness await thee at its end" ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [poky] [PATCH 0/3] kernel: rename supported kernel to linux-yocto @ 2010-11-15 21:19 ` Bruce Ashfield 0 siblings, 0 replies; 10+ messages in thread From: Bruce Ashfield @ 2010-11-15 21:19 UTC (permalink / raw) To: Darren Hart; +Cc: yocto, poky On Mon, Nov 15, 2010 at 4:09 PM, Darren Hart <dvhart@linux.intel.com> wrote: > On 11/15/2010 08:56 AM, Bruce Ashfield wrote: >> >> This is the first of several staged changes to update the >> kernel support for the 1.0 release. >> >> This series is step 1: >> >> - rename the supported kernel to 'linux-yocto' and update >> the boards, and recipes that have references to linux-wrs. >> >> Step 2 will refactor the code into reusable blocks >> Step 3 will do internal branch renames for scalability >> Step 4 will launch and updated 2.6.34.x and 2.6.37-rcX kernel >> >> This has been built and booted on the relevant boards. If I've >> missed a reference to the existing kernel name, let me know >> and I'll make those updates as well. >> >> Pull URL: git://git.pokylinux.org/poky-contrib.git >> Branch: zedd/kernel-rename >> Browse: >> http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=zedd/kernel-rename >> >> Thanks, >> Bruce Ashfield<bruce.ashfield@windriver.com> >> --- >> >> >> Bruce Ashfield (3): >> linux-wrs: rename to linux-yocto >> linux-yocto: update board configurations >> linux-yocto: update SRCREVs for linux-yocto rename > > From what I can tell these changes are not "bisectable" - the build would > fail if all three are not applied. If I'm not missing something, I'd prefer > to see these squashed into a single commit. Hmmm. I was largely thinking about another patch series. The commit messages for these are pretty small. I've squashed and updated my contrib branch. Cheers, Bruce > > -- > Darren Hart > Embedded Linux Kernel > _______________________________________________ > poky mailing list > poky@yoctoproject.org > https://lists.yoctoproject.org/listinfo/poky > -- "Thou shalt not follow the NULL pointer, for chaos and madness await thee at its end" ^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2010-11-15 21:19 UTC | newest] Thread overview: 10+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2010-11-15 16:56 [PATCH 0/3] kernel: rename supported kernel to linux-yocto Bruce Ashfield 2010-11-15 16:56 ` [PATCH 1/3] linux-wrs: rename " Bruce Ashfield 2010-11-15 16:56 ` [PATCH 2/3] linux-yocto: update board configurations Bruce Ashfield 2010-11-15 16:56 ` [PATCH 3/3] linux-yocto: update SRCREVs for linux-yocto rename Bruce Ashfield 2010-11-15 21:09 ` [PATCH 0/3] kernel: rename supported kernel to linux-yocto Darren Hart 2010-11-15 21:09 ` [poky] " Darren Hart 2010-11-15 21:16 ` Bruce Ashfield 2010-11-15 21:16 ` [poky] " Bruce Ashfield 2010-11-15 21:19 ` Bruce Ashfield 2010-11-15 21:19 ` [poky] " Bruce Ashfield
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.