From 851c7ff26de131b871bd5a64274c1a2b13d60fc3 Mon Sep 17 00:00:00 2001 From: Ting Liu Date: Mon, 8 Jul 2013 11:08:16 +0800 Subject: change layout to follow oe-core guidelines of recipes Follow the rules defined in: http://git.yoctoproject.org/cgit/cgit.cgi/poky/tree/meta/recipes.txt recipes-bsp - Anything with links to specific hardware or hardware configuration information recipes-connectivity - Libraries and applications related to communication with other devices recipes-core - What's needed to build a basic working Linux image including commonly used dependencies recipes-devtools - Tools primarily used by the build system (but can also be used on targets) recipes-extended - Applications which whilst not essential add features compared to the alternatives in core. May be needed for full tool functionality or LSB compliance. recipes-gnome - All things related to the GTK+ application framework recipes-graphics - X and other graphically related system libraries recipes-kernel - The kernel and generic applications/libraries with strong kernel dependencies recipes-lsb4 - Recipes added for the sole purpose of supporting the Linux Standard Base (LSB) 4.x recipes-multimedia - Codecs and support utilties for audio, images and video recipes-rt - Provides package and image recipes for using and testing the PREEMPT_RT kernel recipes-qt - All things related to the Qt application framework recipes-sato - The Sato demo/reference UI/UX, its associated apps and configuration recipes-support - Recipes used by other recipes but that are not directly included in images recipes-dpaa - recipes related to fsl dpaa feature recipes-virtualization - recipes related to fsl virtualization feature Signed-off-by: Ting Liu --- recipes-tools/boot-format/boot-format_git.bb | 19 ----- recipes-tools/cst/cst_git.bb | 29 ------- .../embedded-hv/files/81-fsl-embedded-hv.rules | 2 - recipes-tools/embedded-hv/hypervisor_git.bb | 90 --------------------- recipes-tools/eth-config/eth-config_git.bb | 19 ----- recipes-tools/flib/flib_git.bb | 15 ---- recipes-tools/hv-cfg/hv-cfg_git.bb | 46 ----------- .../mux-server/files/mux-server-1.02.tar.gz | Bin 10021 -> 0 bytes recipes-tools/mux-server/mux-server_1.02.bb | 16 ---- recipes-tools/rcw/rcw_git.bb | 39 --------- recipes-tools/skmm/skmm_git.bb | 33 -------- recipes-tools/usdpaa/usdpaa_git.bb | 49 ----------- recipes-tools/web-sysmon/web-sysmon_git.bb | 21 ----- 13 files changed, 378 deletions(-) delete mode 100644 recipes-tools/boot-format/boot-format_git.bb delete mode 100644 recipes-tools/cst/cst_git.bb delete mode 100644 recipes-tools/embedded-hv/files/81-fsl-embedded-hv.rules delete mode 100644 recipes-tools/embedded-hv/hypervisor_git.bb delete mode 100644 recipes-tools/eth-config/eth-config_git.bb delete mode 100644 recipes-tools/flib/flib_git.bb delete mode 100644 recipes-tools/hv-cfg/hv-cfg_git.bb delete mode 100644 recipes-tools/mux-server/files/mux-server-1.02.tar.gz delete mode 100644 recipes-tools/mux-server/mux-server_1.02.bb delete mode 100644 recipes-tools/rcw/rcw_git.bb delete mode 100644 recipes-tools/skmm/skmm_git.bb delete mode 100644 recipes-tools/usdpaa/usdpaa_git.bb delete mode 100644 recipes-tools/web-sysmon/web-sysmon_git.bb (limited to 'recipes-tools') diff --git a/recipes-tools/boot-format/boot-format_git.bb b/recipes-tools/boot-format/boot-format_git.bb deleted file mode 100644 index ac1504d..0000000 --- a/recipes-tools/boot-format/boot-format_git.bb +++ /dev/null @@ -1,19 +0,0 @@ -DESCRIPTION = "Boot format utility for booting from eSDHC/eSPI" -LICENSE = "GPLv2" -PR = "r6" -LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263" - -SRC_URI = "git://git.freescale.com/ppc/sdk/boot-format.git" -SRCREV = "d9bbfaba0c9316ae33455099c47bae429479e530" - -S = "${WORKDIR}/git" -EXTRA_OEMAKE = 'CC="${CC}"' - -do_install(){ - oe_runmake DESTDIR=${D} PREFIX=${prefix} install -} - -PACKAGES =+ "${PN}-config" -FILES_${PN}-config += "${datadir}/*" - -BBCLASSEXTEND = "native nativesdk" diff --git a/recipes-tools/cst/cst_git.bb b/recipes-tools/cst/cst_git.bb deleted file mode 100644 index 177f23c..0000000 --- a/recipes-tools/cst/cst_git.bb +++ /dev/null @@ -1,29 +0,0 @@ -DESCRIPTION = "CST Tool" -SECTION = "cst" -LICENSE = "BSD" - -# TODO: fix license - this file is not a license -LIC_FILES_CHKSUM = "file://RELEASENOTES;beginline=8;endline=43;md5=5a7b22a2c96b5f94e0498c5f413aa8d3" - -DEPENDS += "openssl" - -SRC_URI = "git://git.freescale.com/ppc/sdk/cst.git" -SRCREV = "e4035cbf54ed481147c6ae65c741ef75dc9ec37f" - -S = "${WORKDIR}/git" - -EXTRA_OEMAKE = 'OPENSSL_LIB_PATH=${STAGING_LIBDIR} OPENSSL_INC_PATH=${STAGING_INCDIR} CC="${CC}" LD="${CC}" LDFLAGS="${LDFLAGS}"' - -do_install () { - install -d ${D}/${bindir}/cst - install -m 755 ${S}/gen_keys ${D}/${bindir}/cst/ - install -m 755 ${S}/gen_otpmk ${D}/${bindir}/cst/ - install -m 755 ${S}/uni_cfsign ${D}/${bindir}/cst/ - install -m 755 ${S}/uni_sign ${D}/${bindir}/cst/ - cp -rf ${S}/input_files ${D}/${bindir}/cst -} - -BBCLASSEXTEND = "native nativesdk" -PARALLEL_MAKE = "" - -FILES_${PN}-dbg += "${bindir}/cst/.debug" diff --git a/recipes-tools/embedded-hv/files/81-fsl-embedded-hv.rules b/recipes-tools/embedded-hv/files/81-fsl-embedded-hv.rules deleted file mode 100644 index 5edfa11..0000000 --- a/recipes-tools/embedded-hv/files/81-fsl-embedded-hv.rules +++ /dev/null @@ -1,2 +0,0 @@ -# Add rule to handle setting up device node for FSL HV mgmt driver -SUBSYSTEM=="misc", KERNEL=="fsl-hv", NAME="fsl-hv" diff --git a/recipes-tools/embedded-hv/hypervisor_git.bb b/recipes-tools/embedded-hv/hypervisor_git.bb deleted file mode 100644 index dc86406..0000000 --- a/recipes-tools/embedded-hv/hypervisor_git.bb +++ /dev/null @@ -1,90 +0,0 @@ -DESCRIPTION = "Freescale embedded hypervisor" -SECTION = "embedded-hv" -LICENSE = "BSD" -LIC_FILES_CHKSUM = "file://README;endline=22;md5=0655bbc3b7d7166c30c87208b4e23cf0" - -PR = "r3" - -DEPENDS = "u-boot-mkimage-native" - -inherit deploy - -S = "${WORKDIR}/git" - -# TODO: fix dtc to use the already built package -SRC_URI = " \ - git://git.freescale.com/ppc/sdk/hypervisor/hypervisor.git;name=hypervisor \ - git://git.freescale.com/ppc/sdk/hypervisor/kconfig.git;name=kconfig;destsuffix=git/kconfig \ - git://git.freescale.com/ppc/sdk/hypervisor/libos.git;name=libos;destsuffix=git/libos \ - git://www.jdl.com/software/dtc.git;name=dtc;destsuffix=dtc \ - git://git.freescale.com/ppc/sdk/hypertrk.git;name=hypertrk;destsuffix=git/hypertrk \ - file://81-fsl-embedded-hv.rules \ - " - -SRCREV_FORMAT="hypervisor" -SRCREV = "e6092cdf2a225c66c1ea46b1151eb828da29d139" -SRCREV_kconfig = "a56025d4da992b856796b0eccac2e410d751dbac" -SRCREV_libos = "5268371581f3ef3959be2a53235edfa6a8c6aa7c" -SRCREV_dtc = "033089f29099bdfd5c2d6986cdb9fd07b16cfde0" -SRCREV_hypertrk = "975c98b562186afbd3bbf103ae54b96cf9b3e533" - -EXTRA_OEMAKE = 'CROSS_COMPILE=${TARGET_PREFIX} CC="${TARGET_PREFIX}gcc ${TOOLCHAIN_OPTIONS}"' - -DEFCONFIG = "defconfig" -DEFCONFIG_powerpc64 = "64bit_defconfig" - -COMPATIBLE_HOST_fslmachine = ".*" -COMPATIBLE_HOST ?= "(none)" - -inherit cml1 -do_configure () { - oe_runmake ${DEFCONFIG} -} - -PKG_HV_HYPERTRK_SUPPORT = "n" -do_compile () { - if [ "${PKG_HV_HYPERTRK_SUPPORT}" = "y" ] - then - oe_runmake silentoldconfig - export HV_DIR=$PWD - cd hypertrk - oe_runmake deploy - cd .. - fi - - oe_runmake - oe_runmake partman -} - -do_install () { - install -d ${D}/${bindir} - install ${S}/output/bin/linux/partman ${D}/${bindir}/partman - - install -d ${D}${sysconfdir}/udev/rules.d - install -m 0644 ${WORKDIR}/81-fsl-embedded-hv.rules ${D}${sysconfdir}/udev/rules.d - - install -d ${D}/boot/hv - install ${S}/output/.config ${D}/boot/hv/hypervisor.config - install -m 644 ${S}/output/bin/hv ${S}/output/bin/hv.map \ - ${S}/output/bin/hv.uImage ${S}/output/bin/hv.bin \ - ${D}/boot/hv/ -} - -do_deploy () { - install -d ${DEPLOYDIR}/hv/ - install ${S}/output/.config ${DEPLOYDIR}/hv/hypervisor.config - install -m 644 ${S}/output/bin/hv ${S}/output/bin/hv.map \ - ${S}/output/bin/hv.uImage ${S}/output/bin/hv.bin \ - ${DEPLOYDIR}/hv/ -} -addtask deploy before do_build after do_install - -do_deploy_append() { - rm -f ${S}/../hv -} - -INHIBIT_PACKAGE_DEBUG_SPLIT = "1" -ALLOW_EMPTY_${PN} = "1" -PACKAGES_prepend = "${PN}-image ${PN}-partman " -FILES_${PN}-image = "/boot/" -FILES_${PN}-partman = "${bindir}/partman" diff --git a/recipes-tools/eth-config/eth-config_git.bb b/recipes-tools/eth-config/eth-config_git.bb deleted file mode 100644 index ac25013..0000000 --- a/recipes-tools/eth-config/eth-config_git.bb +++ /dev/null @@ -1,19 +0,0 @@ -DESCRIPTION = "Ethernet Configuration Files" -SECTION = "eth-config" -LICENSE = "Freescale-EULA" -LIC_FILES_CHKSUM = "file://COPYING;md5=cf02dc8eb5ac4a76f3812826520dea87" - -PR = "r2" - -SRC_URI = "git://git.freescale.com/ppc/sdk/eth-config.git" -SRCREV = "c255231fb606bff18390da3b26e1ee9fca55e4e6" - -S = "${WORKDIR}/git" - -do_install() { - install -d ${D}/etc/fmc/config - install -m 644 ${S}/*.xml ${D}/etc/fmc/config - install -d ${D}/etc/fmc/config/shared_mac - install -m 644 ${S}/shared_mac/*.xml ${D}/etc/fmc/config/shared_mac - install -m 644 ${S}/shared_mac/README ${D}/etc/fmc/config/shared_mac -} diff --git a/recipes-tools/flib/flib_git.bb b/recipes-tools/flib/flib_git.bb deleted file mode 100644 index fb3f698..0000000 --- a/recipes-tools/flib/flib_git.bb +++ /dev/null @@ -1,15 +0,0 @@ -DESCRIPTION = "Foundation Library" -SECTION = "flib" -LICENSE = "BSD & GPLv2" -LIC_FILES_CHKSUM = "file://COPYING;md5=3f16fa8e677e45af3127c5c4bafc3c00" - -SRC_URI = "git://git.freescale.com/ppc/sdk/flib.git" -SRCREV = "ff692ad3c286a07717c6677177825889fe17d450" - -S = "${WORKDIR}/git" - -do_install(){ - oe_runmake install DESTDIR=${D} -} - -ALLOW_EMPTY_${PN} = "1" diff --git a/recipes-tools/hv-cfg/hv-cfg_git.bb b/recipes-tools/hv-cfg/hv-cfg_git.bb deleted file mode 100644 index 2c6bb85..0000000 --- a/recipes-tools/hv-cfg/hv-cfg_git.bb +++ /dev/null @@ -1,46 +0,0 @@ -DESCRIPTION = "Hypervisor Config" -SECTION = "hv-cfg" -LICENSE = "BSD" -PR = "r6" - -LIC_FILES_CHKSUM = " \ - file://p2041rdb/LICENSE;md5=96dd72f26e9bb861de5c76c60e35e1bc \ - file://p3041ds/LICENSE;md5=96dd72f26e9bb861de5c76c60e35e1bc \ - file://p4080ds/LICENSE;md5=96dd72f26e9bb861de5c76c60e35e1bc \ - file://p5020ds/LICENSE;md5=96dd72f26e9bb861de5c76c60e35e1bc \ -" - -DEPENDS += "dtc-native" - -# this package is specific to the machine itself -INHIBIT_DEFAULT_DEPS = "1" -PACKAGE_ARCH = "${MACHINE_ARCH}" -COMPATIBLE_HOST_fslmachine = ".*" -COMPATIBLE_HOST ?= "(none)" - -inherit deploy - -SRCREV = "d037ab9d5b9ecd58e10a7dac2b601d781ed9b5bf" -SRC_URI = "git://git.freescale.com/ppc/sdk/hv-cfg.git" - -S = "${WORKDIR}/git" - -do_install () { - make install - - M=`echo ${MACHINE} | sed s/-64b//g` - install -d ${D}/boot/hv-cfg - cp -r ${S}/${M}/${M}/* ${D}/boot/hv-cfg -} - -do_deploy () { - M=`echo ${MACHINE} | sed s/-64b//g` - install -d ${DEPLOYDIR}/hv-cfg - cp -r ${S}/${M}/${M}/* ${DEPLOYDIR}/hv-cfg -} -addtask deploy after do_install - -PACKAGES += "${PN}-image" -FILES_${PN}-image += "/boot" - -ALLOW_EMPTY_${PN} = "1" diff --git a/recipes-tools/mux-server/files/mux-server-1.02.tar.gz b/recipes-tools/mux-server/files/mux-server-1.02.tar.gz deleted file mode 100644 index d8f2014..0000000 Binary files a/recipes-tools/mux-server/files/mux-server-1.02.tar.gz and /dev/null differ diff --git a/recipes-tools/mux-server/mux-server_1.02.bb b/recipes-tools/mux-server/mux-server_1.02.bb deleted file mode 100644 index ab9cce1..0000000 --- a/recipes-tools/mux-server/mux-server_1.02.bb +++ /dev/null @@ -1,16 +0,0 @@ -DESCRIPTION = "A Linux-based utility supporting console multiplexing and demultiplexing" -SECTION = "mux-server" -LICENSE = "LGPL-2.1" -# TODO: add a dedicated COPYING file -LIC_FILES_CHKSUM = "file://mux_server.c;endline=9;md5=e59eeb0812bb88b7af2d932f2dc22aed" - -SRC_URI = "file://mux-server-${PV}.tar.gz;name=mux_server" - -EXTRA_OEMAKE='HOSTCC="${CC}"' - -do_install () { - install -d ${D}${bindir} - install -m 755 mux_server ${D}${bindir} -} - -BBCLASSEXTEND = "native nativesdk" diff --git a/recipes-tools/rcw/rcw_git.bb b/recipes-tools/rcw/rcw_git.bb deleted file mode 100644 index c532a9d..0000000 --- a/recipes-tools/rcw/rcw_git.bb +++ /dev/null @@ -1,39 +0,0 @@ -DESCRIPTION = "Reset Control Words (RCW)" -SECTION = "rcw" -LICENSE = "BSD" -PR = "r8" - -LIC_FILES_CHKSUM = "file://rcw.py;beginline=8;endline=28;md5=9ba0b28922dd187b06b6c8ebcfdd208e" - -# this package is specific to the machine itself -INHIBIT_DEFAULT_DEPS = "1" -PACKAGE_ARCH = "${MACHINE_ARCH}" -COMPATIBLE_HOST_fslmachine = ".*" -COMPATIBLE_HOST ?= "(none)" - -inherit deploy - -SRC_URI = "git://git.freescale.com/ppc/sdk/rcw.git" -SRCREV = "5d3c819bcca6d09dcf7b52b3f2855dda304a5997" - -S = "${WORKDIR}/git" - -do_install () { - make install - - M=`echo ${MACHINE} | sed s/-64b//g` - install -d ${D}/boot/rcw - cp -r ${S}/${M}/${M}/* ${D}/boot/rcw -} - -do_deploy () { - M=`echo ${MACHINE} | sed s/-64b//g` - install -d ${DEPLOYDIR}/rcw - cp -r ${S}/${M}/${M}/* ${DEPLOYDIR}/rcw -} -addtask deploy after do_install - -PACKAGES += "${PN}-image" -FILES_${PN}-image += "/boot" - -ALLOW_EMPTY_${PN} = "1" diff --git a/recipes-tools/skmm/skmm_git.bb b/recipes-tools/skmm/skmm_git.bb deleted file mode 100644 index 224e556..0000000 --- a/recipes-tools/skmm/skmm_git.bb +++ /dev/null @@ -1,33 +0,0 @@ -DESCRIPTION = "SKMM application for PCIe endpoint" -SECTION = "skmm" -LICENSE = "BSD & GPLv2" -LIC_FILES_CHKSUM = "file://Makefile;endline=30;md5=39e58bedc879163c9338596e52df5b1f" - -DEPENDS = "libedit" - -SRC_URI = "git://git.freescale.com/ppc/sdk/skmm-ep.git" -SRCREV = "80d8393a2033b3b0cc8f885702d7b288956f3a37" - -COMPATIBLE_MACHINE = "(p4080ds|t4240qds)" - -S = "${WORKDIR}/git" - -EXTRA_OEMAKE = 'MACHINE=${MACHINE}' - -export LIBEDIT_CFLAGS="$(pkg-config --cflags libedit)" -export LIBEDIT_LDFLAGS="$(pkg-config --libs --static libedit)" - -do_compile () { - export ARCH=${TARGET_ARCH} - oe_runmake HOST=x86_64 clean - oe_runmake HOST=x86_64 - oe_runmake HOST=powerpc clean - oe_runmake HOST=powerpc -} - -do_install () { - oe_runmake ARCH=${TARGET_ARCH} HOST=x86_64 install DESTDIR=${D} - oe_runmake ARCH=${TARGET_ARCH} HOST=powerpc install DESTDIR=${D} -} - -FILES_${PN} += "/home/root/.skmm/*" diff --git a/recipes-tools/usdpaa/usdpaa_git.bb b/recipes-tools/usdpaa/usdpaa_git.bb deleted file mode 100644 index 48e860f..0000000 --- a/recipes-tools/usdpaa/usdpaa_git.bb +++ /dev/null @@ -1,49 +0,0 @@ -DESCRIPTION = "User-Space Data-Path Acceleration Architecture drivers" -LICENSE = "BSD & GPLv2" -LIC_FILES_CHKSUM = "file://Makefile;endline=30;md5=39e58bedc879163c9338596e52df5b1f" -PR = "r4" - -inherit pkgconfig - -DEPENDS = "libxml2 libedit ncurses readline flib fmc" -RDEPENDS_${PN} = "libgcc bash" - -SRC_URI = "git://git.freescale.com/ppc/sdk/usdpaa.git" -SRCREV = "97fe45d9697ef339e10a1885539b23fa7fcb113e" - -S = "${WORKDIR}/git" - -EXTRA_OEMAKE = 'CC="${CC}" LD="${LD}" AR="${AR}"' -export ARCH="${TARGET_ARCH}" - -do_compile_prepend () { - case ${MACHINE} in - b4420qds|b4420qds-64b|b4860qds|b4860qds-64b) SOC=B4860;; - t4240qds|t4240qds-64b) SOC=T4240;; - p1023rdb) SOC=P1023;; - *) SOC=P4080;; - esac - export FMC_EXTRA_CFLAGS="-I ${STAGING_INCDIR}/fmc" - export FMLIB_EXTRA_CFLAGS="-I ${STAGING_INCDIR}/fmd \ - -I ${STAGING_INCDIR}/fmd/Peripherals \ - -I ${STAGING_INCDIR}/fmd/integrations \ - -D $SOC" - - export LIBXML2_CFLAGS="$(pkg-config --cflags libxml-2.0)" - export LIBXML2_LDFLAGS="$(pkg-config --libs --static libxml-2.0)" - export LIBEDIT_CFLAGS="$(pkg-config --cflags libedit)" - export LIBEDIT_LDFLAGS="$(pkg-config --libs --static libedit)" -} - -do_install () { - oe_runmake install DESTDIR=${D} -} - -PARALLEL_MAKE_pn-${PN} = "" -FILES_${PN} += "/root/SOURCE_THIS /usr/etc/" - -PACKAGE_ARCH = "${MACHINE_ARCH}" - -COMPATIBLE_HOST_fslmachine = ".*" -COMPATIBLE_HOST ?= "(none)" - diff --git a/recipes-tools/web-sysmon/web-sysmon_git.bb b/recipes-tools/web-sysmon/web-sysmon_git.bb deleted file mode 100644 index 1b2e070..0000000 --- a/recipes-tools/web-sysmon/web-sysmon_git.bb +++ /dev/null @@ -1,21 +0,0 @@ -DESCRIPTION = "Web System Monitor Files" -SECTION = "web-sysmon" -LICENSE = "GPLv2" -LIC_FILES_CHKSUM = "file://COPYING;md5=12f884d2ae1ff87c09e5b7ccc2c4ca7e" - -SRC_URI = "git://git.freescale.com/ppc/sdk/web-sysmon.git" -SRCREV = "40b47611378ef5c07d98f0f691bb146ae52dcdc1" - -S = "${WORKDIR}/git" - -FILES_${PN} += "/" - -RDEPENDS_${PN} = "lighttpd" - -do_install() { - install -d ${D}/etc - install -m 644 ${S}/lighttpd.conf ${D}/etc - install -d ${D}/usr/local/bin - install -m 755 ${S}/rrd/sens_update_rrd ${D}/usr/local/bin - cp -r ${S}/rrd ${D}/usr -} -- cgit v1.2.3-54-g00ecf