http://bugs.openembedded.org/show_bug.cgi?id=1172

           Summary: building bootstrap-image for SIMpad fails with: Cannot
                    satisfy the following dependencies
           Product: Openembedded
           Version: unspecified
          Platform: Other
        OS/Version: Linux
            Status: NEW
          Severity: normal
          Priority: P2
         Component: Build
        AssignedTo: [email protected]
        ReportedBy: [EMAIL PROTECTED]
         QAContact: [EMAIL PROTECTED]


local.conf 

# OpenEmbedded local configuration file (sample)
#
# Please visit the Wiki at http://openembedded.org/ for more info.
#
#
# Be SURE to read this file in its entirety and the GettingStarted page on the
# wiki before proceeding.
#
# Once you have done that, remove the line at the end of this
# file and build away.
# 
# WARNING: lines starting with a space (' ') will result in parse failures.
# Remove '# ' from commented lines to activate them.
#
# NOTE: Do NOT use $HOME in your paths, BitBake does NOT expand ~ for you.  If
you
# must have paths relative to your homedir use ${HOME} (note the {}'s there
# you MUST have them for the variable expansion to be done by BitBake).  Your
# paths should all be absolute paths (They should all start with a / after
# expansion.  Stuff like starting with ${HOME} or ${TOPDIR} is ok).

# Use this to specify where BitBake should place the downloaded sources into
DL_DIR = "/home/poison/SIMpad/stuff/sources"

# Delete the line below. Then specify which .bb files to consider for
# your build. Typically this will be something like BBFILES =
"/path/to/openembedded/packages/*/*.bb"
BBFILES := "/home/poison/SIMpad/stuff/org.openembedded.dev/packages/*/*.bb"

# Use the BBMASK below to instruct BitBake to _NOT_ consider some .bb files
# This is a regulary expression, so be sure to get your parenthesis balanced.
BBMASK = ""

# Uncomment this if you want to use a prebuilt toolchain. You will need to
# provide packages for toolchain and additional libraries yourself. You also
# have to set PATH in your environment to make sure BitBake finds additional
binaries.
# Note: You will definitely need to say:
#     ASSUME_PROVIDED += "virtual/arm-linux-gcc-2.95"
# to build any of two Linux 2.4 Embedix kernels,
# i.e. openzaurus-sa-2.4.18 and openzaurus-pxa-2.4.18 - and don't forget
# to rename the binaries as instructed in the Wiki.
# ASSUME_PROVIDED += "virtual/${TARGET_PREFIX}gcc virtual/libc"

# Select between multiple alternative providers, if more than one is eligible.
PREFERRED_PROVIDERS = "virtual/qte:qte virtual/libqpe:libqpe-opie"
PREFERRED_PROVIDERS += " virtual/libsdl:libsdl-qpe"
PREFERRED_PROVIDERS += " virtual/${TARGET_PREFIX}gcc-initial:gcc-cross-initial"
PREFERRED_PROVIDERS += " virtual/${TARGET_PREFIX}gcc:gcc-cross"
PREFERRED_PROVIDERS += " virtual/${TARGET_PREFIX}g++:gcc-cross"

# Uncomment this to specify where BitBake should create its temporary files.
# Note that a full build of everything in OpenEmbedded will take GigaBytes of
hard
# disk space, so make sure to free enough space. The default TMPDIR is
# <build directory>/tmp
# Don't use symlinks in in the path to avoid problems
# TMPDIR = /usr/local/projects/oetmp
TMPDIR = /home/poison/SIMpad/stuff/tmp

# Uncomment this to specify a machine to build for. See the conf directory
# for machines currently known to OpenEmbedded.
# MACHINE = "collie"
MACHINE = "simpad"
# Use this to specify the target architecture. Note that this is only
# needed when building for a machine not known to OpenEmbedded. Better use
# the MACHINE attribute (see above)
# TARGET_ARCH = "arm"

# Use this to specify the target operating system.  The default is "linux",
# for a normal linux system with glibc. Set this to "linux-uclibc" if you want
# to build a uclibc based system.
# TARGET_OS = "linux"
# TARGET_OS = "linux-uclibc"

# Uncomment this to select a distribution policy. See the conf directory
# for distributions currently known to OpenEmbedded.
# Although they no longer contain version number in the (file-)name
# familiar-unstable and openzaurus-unstable are so called "versioned"
# distros, i.e. they explicitely select specific versions of various
# packages.
# Stay away from unversioned distros unless you really know what you are doing
DISTRO = "familiar-unstable"

# So far, angstrom.conf and familiar.conf set ENABLE_BINARY_LOCALE_GENERATION
# to generate binary locale packages at build time using qemu-native and
# thereby guarantee i18n support on all devices. If your build breaks on 
# qemu-native consider disabling ENABLE_BINARY_LOCALE_GENERATION (note that
# this breaks i18n on devices with less than 128MB RAM) or installing
# a working third-party qemu (e.g. provided by your distribution) and
# adding qemu-native to ASSUME_PROVIDED
# ENABLE_BINARY_LOCALE_GENERATION = "0"
ASSUME_PROVIDED += "qemu-native"

# Uncomment this to select a particular major kernel version if the MACHINE
setting
# supports more than one major kernel version. Currently this is suported by
the
# following MACHINE types: poodle, tosa and simpad.
#MACHINE_KERNEL_VERSION = "2.6"
MACHINE_KERNEL_VERSION = "2.4"
# Uncomment one of these to build packages during the build process.
# This is done automatically if you set DISTRO (see above)
# INHERIT = "package_ipk"
# INHERIT = "package_tar"

# Add the required image file system types below. Valid are jffs2, tar, cramfs
and ext2
IMAGE_FSTYPES = "jffs2 tar"

# Uncomment this to disable the parse cache (not recommended).
# CACHE = ""

# Uncomment this if you want BitBake to emit debugging output
# BBDEBUG = "yes"

# Uncomment these two if you want BitBake to build images useful for debugging. 
# Note that INHIBIT_PACKAGE_STRIP needs a package format to be defined
# DEBUG_BUILD = "1"
# INHIBIT_PACKAGE_STRIP = "1"

# Uncomment these to build a package such that you can use gprof to profile it.
# NOTE: This will only work with 'linux' targets, not
# 'linux-uclibc', as uClibc doesn't provide the necessary
# object files.  Also, don't build glibc itself with these
# flags, or it'll fail to build.
#
# PROFILE_OPTIMIZATION = "-pg"
# SELECTED_OPTIMIZATION = "${PROFILE_OPTIMIZATION}"
# LDFLAGS =+ "-pg"

# Uncomment this to enable parallel make.
# This allows make to spawn mutliple processes to take advantage of multiple 
# processors. Useful on SMP machines. This may break some packages - we're
# in the process of marking these so let us know if you find any.
# PARALLEL_MAKE = "-j 4"

# Uncomment this if you want BitBake to emit the log if a build fails.
BBINCLUDELOGS = "yes"

# Specifies a location to search for pre-generated tarballs when fetching
# a cvs:// URI. Outcomment this, if you always want to pull directly from CVS.
CVS_TARBALL_STASH = "http://www.oesources.org/source/current/";

# EDIT THIS FILE and then remove the line below before using!



bitbake bootstrap-image

[...]

|   extracting control.tar.gz from
/home/poison/SIMpad/stuff/tmp/deploy/ipk/locale-base-zu-za_2.3.5+cvs20050627-r7_arm.ipk
|   extracting control.tar.gz from
/home/poison/SIMpad/stuff/tmp/deploy/ipk/localedef_2.3.5+cvs20050627-r7_arm.ipk
|   extracting control.tar.gz from
/home/poison/SIMpad/stuff/tmp/deploy/ipk/nscd_2.3.5+cvs20050627-r7_arm.ipk
|   extracting control.tar.gz from
/home/poison/SIMpad/stuff/tmp/deploy/ipk/sln_2.3.5+cvs20050627-r7_arm.ipk
|   extracting control.tar.gz from
/home/poison/SIMpad/stuff/tmp/deploy/ipk/task-bootstrap-unionroot_1.0-r2_simpad.ipk
| 
| + mkdir -p
/home/poison/SIMpad/stuff/tmp/work/simpad-linux/bootstrap-image-1.0-r0/temp
| + echo 'src oe file:/home/poison/SIMpad/stuff/tmp/deploy/ipk'
| + ipkgarchs='all any noarch arm  simpad'
| + priority=1
| + for arch in '$ipkgarchs'
| + echo 'arch all 1'
| ++ expr 1 + 5
| + priority=6
| + for arch in '$ipkgarchs'
| + echo 'arch any 6'
| ++ expr 6 + 5
| + priority=11
| + for arch in '$ipkgarchs'
| + echo 'arch noarch 11'
| ++ expr 11 + 5
| + priority=16
| + for arch in '$ipkgarchs'
| + echo 'arch arm 16'
| ++ expr 16 + 5
| + priority=21
| + for arch in '$ipkgarchs'
| + echo 'arch simpad 21'
| ++ expr 21 + 5
| + priority=26
| + ipkg-cl -f
/home/poison/SIMpad/stuff/tmp/work/simpad-linux/bootstrap-image-1.0-r0/temp/ipkg.conf
-o /home/poison/SIMpad/stuff/tmp/rootfs update
| Downloading file:/home/poison/SIMpad/stuff/tmp/deploy/ipk/Packages
| Updated list of available packages in
/home/poison/SIMpad/stuff/tmp/rootfs//usr/lib/ipkg/lists/oe
| Successfully terminated.
| + '[' '!' -z '' ']'
| + '[' '!' -z task-bootstrap ']'
| + ipkg-cl -f
/home/poison/SIMpad/stuff/tmp/work/simpad-linux/bootstrap-image-1.0-r0/temp/ipkg.conf
-o /home/poison/SIMpad/stuff/tmp/rootfs install task-bootstrap
| Installing task-bootstrap-unionroot (1.0-r2) to root...
| Downloading
file:/home/poison/SIMpad/stuff/tmp/deploy/ipk/task-bootstrap-unionroot_1.0-r2_simpad.ipk
| task-bootstrap-unionroot: unsatisfied recommendation for dropbear
| task-bootstrap-unionroot: unsatisfied recommendation for portmap
| task-bootstrap-unionroot: unsatisfied recommendation for hostap-modules-cs
| task-bootstrap-unionroot: unsatisfied recommendation for orinoco-modules-cs
| task-bootstrap-unionroot: unsatisfied recommendation for
kernel-module-sa1100-ir
| task-bootstrap-unionroot: unsatisfied recommendation for
kernel-module-sa1100usb-core
| task-bootstrap-unionroot: unsatisfied recommendation for
kernel-module-usb-eth
| task-bootstrap-unionroot: unsatisfied recommendation for
kernel-module-pcnet-cs
| task-bootstrap-unionroot: unsatisfied recommendation for kernel-module-8390
| task-bootstrap-unionroot: unsatisfied recommendation for ppp
| task-bootstrap-unionroot: unsatisfied recommendation for wireless-tools
| task-bootstrap-unionroot: unsatisfied recommendation for irda-utils
| task-bootstrap-unionroot: unsatisfied recommendation for wpa-supplicant-nossl
| task-bootstrap-unionroot: unsatisfied recommendation for lrzsz
| task-bootstrap-unionroot: unsatisfied recommendation for ppp-dialin
| task-bootstrap-unionroot: unsatisfied recommendation for kernel-module-ipv6
| task-bootstrap-unionroot: unsatisfied recommendation for kernel-module-ipsec
| task-bootstrap-unionroot: unsatisfied recommendation for kernel-module-nvrd
| task-bootstrap-unionroot: unsatisfied recommendation for
kernel-module-mip6-mn
| task-bootstrap-unionroot: unsatisfied recommendation for kernel-module-tun
| task-bootstrap-unionroot: unsatisfied recommendation for kernel-module-ide-cs
| task-bootstrap-unionroot: unsatisfied recommendation for
kernel-module-ide-disk
| task-bootstrap-unionroot: unsatisfied recommendation for
kernel-module-ide-probe-mod
| task-bootstrap-unionroot: unsatisfied recommendation for kernel-module-loop
| task-bootstrap-unionroot: unsatisfied recommendation for kernel-module-vfat
| task-bootstrap-unionroot: unsatisfied recommendation for kernel-module-ext2
| task-bootstrap-unionroot: unsatisfied recommendation for kernel-module-sunrpc
| task-bootstrap-unionroot: unsatisfied recommendation for kernel-module-nfs
| task-bootstrap-unionroot: unsatisfied recommendation for
kernel-module-btuart-cs
| task-bootstrap-unionroot: unsatisfied recommendation for
kernel-module-dtl1-cs
| task-bootstrap-unionroot: unsatisfied recommendation for
kernel-module-bt3c-cs
| task-bootstrap-unionroot: unsatisfied recommendation for kernel-module-rfcomm
| task-bootstrap-unionroot: unsatisfied recommendation for kernel-module-bnep
| task-bootstrap-unionroot: unsatisfied recommendation for kernel-module-l2cap
| task-bootstrap-unionroot: unsatisfied recommendation for kernel-module-sco
| task-bootstrap-unionroot: unsatisfied recommendation for
kernel-module-hci-uart
| task-bootstrap-unionroot: unsatisfied recommendation for kernel-module-hidp
| task-bootstrap-unionroot: unsatisfied recommendation for
kernel-module-pcnet-cs
| task-bootstrap-unionroot: unsatisfied recommendation for
kernel-module-serial-cs
| task-bootstrap-unionroot: unsatisfied recommendation for
kernel-module-airo-cs
| task-bootstrap-unionroot: unsatisfied recommendation for
kernel-module-af-packet
| task-bootstrap-unionroot: unsatisfied recommendation for
kernel-module-ppp-async
| task-bootstrap-unionroot: unsatisfied recommendation for
kernel-module-ppp-deflate
| task-bootstrap-unionroot: unsatisfied recommendation for
kernel-module-ppp-mppe
| task-bootstrap-unionroot: unsatisfied recommendation for kernel-module-ip-gre
| task-bootstrap-unionroot: unsatisfied recommendation for
kernel-module-ip-tables
| task-bootstrap-unionroot: unsatisfied recommendation for kernel-module-ipip
| task-bootstrap-unionroot: unsatisfied recommendation for kernel-module-irda
| task-bootstrap-unionroot: unsatisfied recommendation for kernel-module-irlan
| task-bootstrap-unionroot: unsatisfied recommendation for kernel-module-irnet
| task-bootstrap-unionroot: unsatisfied recommendation for kernel-module-irport
| task-bootstrap-unionroot: unsatisfied recommendation for kernel-module-irtty
| task-bootstrap-unionroot: unsatisfied recommendation for
kernel-module-ircomm-tty
| task-bootstrap-unionroot: unsatisfied recommendation for kernel-module-input
| task-bootstrap-unionroot: unsatisfied recommendation for kernel-module-uinput
| Nothing to be done
| An error ocurred, return value: 1.
| Collected errors:
| ERROR: Cannot satisfy the following dependencies for
task-bootstrap-unionroot:
|        base-files base-passwd busybox initscripts netbase sysvinit
sysvinit-pidof tinylogin modutils-initscripts linux-hotplug udev
module-init-tools kernel e2fsprogs-mke2fs pcmcia-cs apm apmd
network-suspend-scripts familiar-version ipkg-collateral ipkg ipkg-link
modutils-depmod module-init-tools-depmod unionfs-modules unionfs-utils
unionroot unionroot|   extracting control.tar.gz from
/home/poison/SIMpad/stuff/tmp/deploy/ipk/locale-base-zu-za_2.3.5+cvs20050627-r7_arm.ipk
|   extracting control.tar.gz from
/home/poison/SIMpad/stuff/tmp/deploy/ipk/localedef_2.3.5+cvs20050627-r7_arm.ipk
|   extracting control.tar.gz from
/home/poison/SIMpad/stuff/tmp/deploy/ipk/nscd_2.3.5+cvs20050627-r7_arm.ipk
|   extracting control.tar.gz from
/home/poison/SIMpad/stuff/tmp/deploy/ipk/sln_2.3.5+cvs20050627-r7_arm.ipk
|   extracting control.tar.gz from
/home/poison/SIMpad/stuff/tmp/deploy/ipk/task-bootstrap-unionroot_1.0-r2_simpad.ipk
| 
| + mkdir -p
/home/poison/SIMpad/stuff/tmp/work/simpad-linux/bootstrap-image-1.0-r0/temp
| + echo 'src oe file:/home/poison/SIMpad/stuff/tmp/deploy/ipk'
| + ipkgarchs='all any noarch arm  simpad'
| + priority=1
| + for arch in '$ipkgarchs'
| + echo 'arch all 1'
| ++ expr 1 + 5
| + priority=6
| + for arch in '$ipkgarchs'
| + echo 'arch any 6'
| ++ expr 6 + 5
| + priority=11
| + for arch in '$ipkgarchs'
| + echo 'arch noarch 11'
| ++ expr 11 + 5
| + priority=16
| + for arch in '$ipkgarchs'
| + echo 'arch arm 16'
| ++ expr 16 + 5
| + priority=21
| + for arch in '$ipkgarchs'
| + echo 'arch simpad 21'
| ++ expr 21 + 5
| + priority=26
| + ipkg-cl -f
/home/poison/SIMpad/stuff/tmp/work/simpad-linux/bootstrap-image-1.0-r0/temp/ipkg.conf
-o /home/poison/SIMpad/stuff/tmp/rootfs update
| Downloading file:/home/poison/SIMpad/stuff/tmp/deploy/ipk/Packages
| Updated list of available packages in
/home/poison/SIMpad/stuff/tmp/rootfs//usr/lib/ipkg/lists/oe
| Successfully terminated.
| + '[' '!' -z '' ']'
| + '[' '!' -z task-bootstrap ']'
| + ipkg-cl -f
/home/poison/SIMpad/stuff/tmp/work/simpad-linux/bootstrap-image-1.0-r0/temp/ipkg.conf
-o /home/poison/SIMpad/stuff/tmp/rootfs install task-bootstrap
| Installing task-bootstrap-unionroot (1.0-r2) to root...
| Downloading
file:/home/poison/SIMpad/stuff/tmp/deploy/ipk/task-bootstrap-unionroot_1.0-r2_simpad.ipk
| task-bootstrap-unionroot: unsatisfied recommendation for dropbear
| task-bootstrap-unionroot: unsatisfied recommendation for portmap
| task-bootstrap-unionroot: unsatisfied recommendation for hostap-modules-cs
| task-bootstrap-unionroot: unsatisfied recommendation for orinoco-modules-cs
| task-bootstrap-unionroot: unsatisfied recommendation for
kernel-module-sa1100-ir
| task-bootstrap-unionroot: unsatisfied recommendation for
kernel-module-sa1100usb-core
| task-bootstrap-unionroot: unsatisfied recommendation for
kernel-module-usb-eth
| task-bootstrap-unionroot: unsatisfied recommendation for
kernel-module-pcnet-cs
| task-bootstrap-unionroot: unsatisfied recommendation for kernel-module-8390
| task-bootstrap-unionroot: unsatisfied recommendation for ppp
| task-bootstrap-unionroot: unsatisfied recommendation for wireless-tools
| task-bootstrap-unionroot: unsatisfied recommendation for irda-utils
| task-bootstrap-unionroot: unsatisfied recommendation for wpa-supplicant-nossl
| task-bootstrap-unionroot: unsatisfied recommendation for lrzsz
| task-bootstrap-unionroot: unsatisfied recommendation for ppp-dialin
| task-bootstrap-unionroot: unsatisfied recommendation for kernel-module-ipv6
| task-bootstrap-unionroot: unsatisfied recommendation for kernel-module-ipsec
| task-bootstrap-unionroot: unsatisfied recommendation for kernel-module-nvrd
| task-bootstrap-unionroot: unsatisfied recommendation for
kernel-module-mip6-mn
| task-bootstrap-unionroot: unsatisfied recommendation for kernel-module-tun
| task-bootstrap-unionroot: unsatisfied recommendation for kernel-module-ide-cs
| task-bootstrap-unionroot: unsatisfied recommendation for
kernel-module-ide-disk
| task-bootstrap-unionroot: unsatisfied recommendation for
kernel-module-ide-probe-mod
| task-bootstrap-unionroot: unsatisfied recommendation for kernel-module-loop
| task-bootstrap-unionroot: unsatisfied recommendation for kernel-module-vfat
| task-bootstrap-unionroot: unsatisfied recommendation for kernel-module-ext2
| task-bootstrap-unionroot: unsatisfied recommendation for kernel-module-sunrpc
| task-bootstrap-unionroot: unsatisfied recommendation for kernel-module-nfs
| task-bootstrap-unionroot: unsatisfied recommendation for
kernel-module-btuart-cs
| task-bootstrap-unionroot: unsatisfied recommendation for
kernel-module-dtl1-cs
| task-bootstrap-unionroot: unsatisfied recommendation for
kernel-module-bt3c-cs
| task-bootstrap-unionroot: unsatisfied recommendation for kernel-module-rfcomm
| task-bootstrap-unionroot: unsatisfied recommendation for kernel-module-bnep
| task-bootstrap-unionroot: unsatisfied recommendation for kernel-module-l2cap
| task-bootstrap-unionroot: unsatisfied recommendation for kernel-module-sco
| task-bootstrap-unionroot: unsatisfied recommendation for
kernel-module-hci-uart
| task-bootstrap-unionroot: unsatisfied recommendation for kernel-module-hidp
| task-bootstrap-unionroot: unsatisfied recommendation for
kernel-module-pcnet-cs
| task-bootstrap-unionroot: unsatisfied recommendation for
kernel-module-serial-cs
| task-bootstrap-unionroot: unsatisfied recommendation for
kernel-module-airo-cs
| task-bootstrap-unionroot: unsatisfied recommendation for
kernel-module-af-packet
| task-bootstrap-unionroot: unsatisfied recommendation for
kernel-module-ppp-async
| task-bootstrap-unionroot: unsatisfied recommendation for
kernel-module-ppp-deflate
| task-bootstrap-unionroot: unsatisfied recommendation for
kernel-module-ppp-mppe
| task-bootstrap-unionroot: unsatisfied recommendation for kernel-module-ip-gre
| task-bootstrap-unionroot: unsatisfied recommendation for
kernel-module-ip-tables
| task-bootstrap-unionroot: unsatisfied recommendation for kernel-module-ipip
| task-bootstrap-unionroot: unsatisfied recommendation for kernel-module-irda
| task-bootstrap-unionroot: unsatisfied recommendation for kernel-module-irlan
| task-bootstrap-unionroot: unsatisfied recommendation for kernel-module-irnet
| task-bootstrap-unionroot: unsatisfied recommendation for kernel-module-irport
| task-bootstrap-unionroot: unsatisfied recommendation for kernel-module-irtty
| task-bootstrap-unionroot: unsatisfied recommendation for
kernel-module-ircomm-tty
| task-bootstrap-unionroot: unsatisfied recommendation for kernel-module-input
| task-bootstrap-unionroot: unsatisfied recommendation for kernel-module-uinput
| Nothing to be done
| An error ocurred, return value: 1.
| Collected errors:
| ERROR: Cannot satisfy the following dependencies for
task-bootstrap-unionroot:
|        base-files base-passwd busybox initscripts netbase sysvinit
sysvinit-pidof tinylogin modutils-initscripts linux-hotplug udev
module-init-tools kernel e2fsprogs-mke2fs pcmcia-cs apm apmd
network-suspend-scripts familiar-version ipkg-collateral ipkg ipkg-link
modutils-depmod module-init-tools-depmod unionfs-modules unionfs-utils
unionroot unionroot-utils
NOTE: Task failed:
/home/poison/SIMpad/stuff/tmp/work/simpad-linux/bootstrap-image-1.0-r0/temp/log.do_rootfs.7303
NOTE: package bootstrap-image-1.0-r0: task do_rootfs: failed
ERROR: TaskFailed event exception, aborting
NOTE: package bootstrap-image-1.0: failed
ERROR: Build of bootstrap-image failed
-utils
NOTE: Task failed:
/home/poison/SIMpad/stuff/tmp/work/simpad-linux/bootstrap-image-1.0-r0/temp/log.do_rootfs.7303
NOTE: package bootstrap-image-1.0-r0: task do_rootfs: failed
ERROR: TaskFailed event exception, aborting
NOTE: package bootstrap-image-1.0: failed
ERROR: Build of bootstrap-image failed


-- 
Configure bugmail: http://bugs.openembedded.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
_______________________________________________
Oe mailing list
[email protected]
https://www.handhelds.org/mailman/listinfo/oe

Reply via email to