summaryrefslogtreecommitdiff
path: root/packages/python/python-native-2.4.0
diff options
context:
space:
mode:
authorJohn Bowler <jbowler@nslu2-linux.org>2005-07-26 06:16:28 +0000
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>2005-07-26 06:16:28 +0000
commit6078afde23256470c60127179314852f6afff903 (patch)
tree45c3e2c21943e9789f47aa107f8adb8ddecb0849 /packages/python/python-native-2.4.0
parentdb633964b917a1d262ba0e40b090a7a3b9c23005 (diff)
Add mtd packages back in.
Diffstat (limited to 'packages/python/python-native-2.4.0')
0 files changed, 0 insertions, 0 deletions
With this patch, adt_installer will automatically convert user supplied relative paths to absolute. [YOCTO #4955] Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> 2013-07-21adt_installer_internal: fix spelling errorBeth Flanagan1 s/envrionement/environment/ Signed-off-by: Beth Flanagan <elizabeth.flanagan@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> 2013-07-18populate_sdk_base.bbclass: use new perm option for findStefan Stanacar1 Old way find -perm +mode is no longer supported in newer versions of find (Fedora 19). Man page says: -perm +mode This is no longer supported (and has been deprecated since 2005). Use -perm /mode instead. [YOCTO #4853] Signed-off-by: Stefan Stanacar <stefanx.stanacar@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> 2013-06-27adt_installer_internal:add sudo when permission deny on installation directoryHongxu Jia1 When the user doesn't have rights to access the installation directory, the sdk installation will fail, add sudo to fix this. [YOCTO #4760] Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> 2013-06-27adt_installer_internal:fix perl lib version mismatchHongxu Jia1 When run "autoreconf" in toolchain, there is an error if the host's perl's version is not the same as the one in the SDK, the error says that the executable perl mismatches the perl lib's version. This is because most of the autotools' scripts use the "#!/usr/bin/perl -w" which is host perl, but the gnu-configize uses "#! /usr/bin/env perl" which invokes the perl wrapper in the SDK, and the wrapper will set the PERL5LIB to the SDK which causes the mismatch. We can make all the perl scripts to use the host perl or the SDK perl to fix this problem. [YOCTO #4758] Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> 2013-06-27adt_installer_internal: fix perl modules relocated failed on older distributionsHongxu Jia1 The perl module for automake has an embedded path in it, this needs to be relocated. Older versions of 'file' do not return the "ASCII" text in the output for a perl module file. Hence, the regex pattern didn't match perl module and they were not getting relocated at all on older distributions. 1) On CentOS release 6.4, the version of file is 5.04 $ file /usr/lib/perl5/Config_heavy.pl $ /usr/lib/perl5/Config_heavy.pl: Perl5 module source text 2) On Ubuntu 13.04, the version of file is 5.11 $ file /usr/lib/perl/5.14/Config_heavy.pl $ /usr/lib/perl/5.14/Config_heavy.pl: C source, ASCII text, with very long lines [YOCTO #4550] Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> 2013-06-25populate_sdk_base, adt_installer: abort install if path contains spacesLaurentiu Palcu1 Spaces are not handled properly in some parts of oe-core and it's safer to abort toolchain installation if path contains spaces. Even though we fix space handling in the toolchain installation script, there are various other parts in the toolchain (perl scripts, sysroot path passed to toolchain binaries, shebang lines) that would need special handling. So, for now, just bail out if path contains spaces. The checking for spaces in the path is done after expanding relative paths to absolute and tilde conversion. [YOCTO #4488] Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> 2013-05-02adt-installer: do not dereference symlinks when relocatingLaurentiu Palcu1 This was already fixed for meta-toolchain. [YOCTO #4157] Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> 2012-12-06populate_sdk_base, adt_installer_internal: fix issue on older distributionsLaurentiu Palcu1 This patch addresses an SDK installer issue on older distributions if the installation takes place in another directory than the default one. In fact, is all about the 'file' utility version used for determining if a file is a text file. For example, for a perl script, newer 'file' versions return: "...script, ASCII text executable" while older versions return: "...script text executable" Hence the regex pattern didn't match the scripts. Also the patch contains two unrelated minor fixes: * return an exit code of 1 instead of -1 when installation machine is not supported. That because on an older distribution we also get this error message: "exit: 9: Illegal number: -1"; * remove unnecessary $SUDO_EXEC prefix to grep; [YOCTO #3538] Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> 2012-11-18Fix the first line typo of adt-installerJessica Zhang1 [YOCTO #3384] Signed-off-by: Jessica Zhang <jessica.zhang@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> 2012-09-24adt-installer: add sudo when relocating symlinksLaurentiu Palcu1 This is needed if installation is done in a directory that needs root privileges. Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> 2012-09-21SDK: relocate symlinks tooLaurentiu Palcu1 The directory usr/libexec/ in the SDK sysroot contains the default symlinks to the toolchain binaries and these, too, need to point to the correct toolchain path. [YOCTO #3090] Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> 2012-09-21adt-installer: ensure directory exists before copying/removingLaurentiu Palcu1 If the installation is done in a directory which already contains a valid installation, opkg will not install anything and the moving the contents of /install/dir/opt/poky/1.2 (for example) to /install/dir will throw some errors. However, the install directory will not be affected. This patch will ensure that the /install/dir/opt/poky/1.2 exists. Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> 2012-09-21SDK: fix installation into symlinked directoriesLaurentiu Palcu2 The SDK installation scripts should not canonicalize symlinked directories because the entire relocation would be done to the directory to which the symlink points. Instead, if the installation is a symlink, use that path to relocate the binaries. For example, if we have the following symlink: /opt/sdk -> ~/my/test/sdk the binaries will be relocated to /opt/sdk not ~/my/test/sdk as it is done now. [YOCTO #3102] Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> 2012-09-21adt-installer: fix package installation issueLaurentiu Palcu1 When the cross canadian toolchains are installed, for different architectures, they might contain common files. This leads to installation failures since the opkg, by default, does not overwrite files. This issue happens, for example, for binutils packages (that contain the same locale files) or gdb (which installs some syscalls xml files). The locale files could be removed from the binutils cross-canadian package but we cannot do the same for the syscalls GDB files which are used by GDB to display user friendly names for the syscall numbers. Hence, the best solution is to force opkg to overwrite these files. [YOCTO #3109] Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> 2012-09-05adt-installer: Allow changing YOCTOADT_REPOElizabeth Flanagan1 YOCTOADT_REPO within adt-installer.conf was hardcoded to http://adtrepo.yoctoproject.org/${SDK_VERSION} This allows it to be overriden in local.conf by setting ADTREPO = "http://adtrepo.yoctoproject.org/${SDK_VERSION}" I'm also fixing a bad rm in do_populate_adt. The file name that is being rm'd is wrong. Signed-off-by: Elizabeth Flanagan <elizabeth.flanagan@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> 2012-08-31nativesdk: Switch to using nativesdk as a prefix, not a suffixRichard Purdie1 As discussed on the mailing lists, using a suffix to package names is hard and has lead to many recipes having to do PKGSUFFIX games. Its looking extremely hard to scale nativesdk much further without hacking many recipes. By comparison, using a prefix like multilib does works much better and doesn't involve "hacking" as many recipes. This change converts nativesdk to use a prefix using the existing multilib infrastructure. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> 2012-08-28runqemu-export-rootfs and friends: don't put pseudo db in target fsPeter Seebach1 In a few places, we have scripts which use <rootfs>/var/pseudo for the pseudo state directory controlling a given filesystem. This seems possibly risky because it means that stuff running under qemu or whatnot could wipe out the data being used to handle that rootfs. Move this to: <rootfs>/../$(basename_rootfs).pseudo_state to avoid problems. This also solves at least one case (not directly hit by yocto's tree) wherein you could end up trying to remove a rootfs while pseudo was using a database inside that rootfs, and thus the remove would fail. Signed-off-by: Peter Seebach <peter.seebach@windriver.com> 2012-08-17adt-installer: add support for relocatable SDKLaurentiu Palcu2 Since we made the SDK relocatable, we have to add this functionality to adt-installer too. Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> 2012-04-10adt-installer: Fixed ppc kernel naming.Lianhao Lu2 1. Fixed the ppc kernel naming. 2. Disabled opkg shared library to avoid runtime opkg-cl launching error. 3. Adjusted the variable sequence in adt-installer.conf Fixed bug [YOCTO #2233] Signed-off-by: Lianhao Lu <lianhao.lu@intel.com> 2012-03-30adt-installer: Adapted environment file name for powerpc.Lianhao Lu1 Adpated to the new environment file name for powerpc, due to the oe-core commit c2d96179. Fixed bug [YOCTO #2055]. Signed-off-by: Lianhao Lu <lianhao.lu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> 2012-03-08adt-installer: Corrected wrong environment file names.Lianhao Lu1 [YOCTO #2055] 1. Corrected the wrong environment file name for powerpc. 2. Removed unnecessary variables in adt_installer.conf. Signed-off-by: Lianhao Lu <lianhao.lu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> 2012-02-01Fix the issue that adt-installer tar ball is not regenerated if sstate is ↵Jessica Zhang1 on, and other minor bug fixes Signed-off-by: Jessica Zhang <jessica.zhang@intel.com> 2012-01-19adt-installer: install autoconf(/automake)-nativesdkLianhao Lu1 [YOCTO #1909] Install autoconf-nativesdk and automake-nativesdk to host. Signed-off-by: Lianhao Lu <lianhao.lu@intel.com> 2011-08-31Fix powerpc term and provide more template for different archesJessica Zhang1 Signed-off-by: Jessica Zhang <jessica.zhang@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> 2011-08-31Revert "Fix adt-installer for consistent naming for powerpc and add all arch ↵Jessica Zhang3 template for installation" This reverts commit ae4ad20edbb6ea023155f7ae2b00871d479e370d. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> 2011-08-26[YOCTO #1396] Fix adt-installer for consistent naming for powerpc and add ↵Jessica Zhang3 all arch template for installation Signed-off-by: Jessica Zhang <jessica.zhang@intel.com> 2011-08-23adt-installer: Removed the hard coded repo url.Lianhao Lu2 [YOCTO #1380] Removed the hard coded repo url in opkg configuration files. Signed-off-by: Lianhao Lu <lianhao.lu@intel.com> 2011-05-19Add adt repo checkingJessica Zhang2 Signed-off-by: Jessica Zhang <jessica.zhang@intel.com> 2011-05-19extract bitbake config setting into data_define, use more variables ↵Jessica Zhang4 replacing hardcoded values Signed-off-by: Jessica Zhang <jessica.zhang@intel.com> 2011-04-20adt_installer_internal: Remove hardcoded Poky referencesRichard Purdie1 Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> 2011-04-20POKY_NATIVE_SYSROOT -> OECORE_NATIVE_SYSROOTRichard Purdie2 Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> 2011-04-20Rename poky-image-* -> core-image-* and task-poky-* -> task-core-*Richard Purdie2 Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> 2011-03-17ADT: bug fix for nameing and do_patch sequenceLiping Ke2 This patch is for fixing the x86-64 image name bug and also, do_patch must be done before do_deploy. Signed-off-by: Liping Ke <liping.ke@intel.com> 2011-03-14adt: fix ppc/powerpcc naming bugLiping Ke2 for ipk files on ppc, the name should be powerpc. So does the environment file name. For the tar file name, it should be ppc. This patch is to correct the arch/machine name pair. Related Bug#864 Signed-off-by: Liping ke <liping.ke@intel.com> 2011-03-08adt: removed unused repo source and opkg optionsLiping Ke3 opgk option --force-overwrite is only a workaround for bug #547. Now this bug is gone, so remove this option. and also, the first opkg repo source is not useful, remove it. Signed-off-by: Liping Ke <liping.ke@intel.com> 2011-03-07adt: Update to svn r596 to fix symbolic link issuesLiping Ke1 See the longlinksfix patch for details but symlinks over 100 chars long were broken in sdk tarballs and its due to problems in the inbuilt tar in libbb in opkg. svn r596 has already fixed the problem. Signed-off-by: Liping Ke <liping.ke@intel.com> 2011-03-03Fixup merge error and apply cleanupsRichard Purdie2 Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> 2011-03-03ADT: Bug fix for Suse LinuxLiping Ke2 On Suse linux11.2, we found when using sudo, we must add -E opts to preserver some network proxy environment settings. Otherwise, opkg-cl can't access files behind firewall. [bug #785] Also, we need to add absolute path when sourcing files. Fix for [bug #786] Signed-off-by: Liping Ke <liping.ke@intel.com> 2011-03-03Add libtool-nativesdk for ADTLiping Ke1 We need to add libtool native sdk support in ADT installer. This patch fix #bug 791 Signed-off-by: Liping Ke <liping.ke@intel.com> 2011-03-02ADT: Fix several bugs for adt installerLiping Ke3 Two bugs are found 1) image download file path is not correct. So even if file is downloaded already, it can't be detected. 2) several images now are renamed, such as sato-dev, sato-sdk, we need to change the name accordingly. Signed-off-by: Liping Ke <liping.ke@intel.com> 2011-02-21ADT: Fix check_result script cond comparison bugLiping Ke1 When meeting errors, the return number can't be directly compared with -1. Actually, it might be represented as 255. The correct way is to compared it with 0. If the result is non-zero number, we meet error. This patch is for fixing [BUGID #742] Signed-off-by: Liping Ke <liping.ke@intel.coom> 2011-02-08adt-installer: change to adopt the adt public repo directory layoutJessica Zhang7 Signed-off-by: Jessica Zhang <jessica.zhang@intel.com> 2011-01-12adt-intaller feature implementation, including the bitbake recipe file for ↵Liping Ke8 creating the intaller tar file under /tmp/deploy/sdk, and the adt-installer script files and config files, set the reference to adt repo entry empty before it's setup Signed-off-by: Jessica Zhang <jessica.zhang@intel.com>