mirror of
https://git.yoctoproject.org/poky
synced 2026-03-03 22:09:39 +01:00
Having one monolithic packages directory makes it hard to find things and is generally overwhelming. This commit splits it into several logical sections roughly based on function, recipes.txt gives more information about the classifications used. The opportunity is also used to switch from "packages" to "recipes" as used in OpenEmbedded as the term "packages" can be confusing to people and has many different meanings. Not all recipes have been classified yet, this is just a first pass at separating things out. Some packages are moved to meta-extras as they're no longer actively used or maintained. Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
36 lines
953 B
Diff
36 lines
953 B
Diff
---
|
|
apt-pkg/packagemanager.cc | 4 ++++
|
|
1 file changed, 4 insertions(+)
|
|
|
|
--- apt-0.6.45exp2.orig/apt-pkg/packagemanager.cc
|
|
+++ apt-0.6.45exp2/apt-pkg/packagemanager.cc
|
|
@@ -534,10 +534,12 @@ bool pkgPackageManager::SmartUnPack(PkgI
|
|
|
|
List->Flag(Pkg,pkgOrderList::UnPacked,pkgOrderList::States);
|
|
|
|
+#if 0
|
|
// Perform immedate configuration of the package.
|
|
if (List->IsFlag(Pkg,pkgOrderList::Immediate) == true)
|
|
if (SmartConfigure(Pkg) == false)
|
|
return _error->Error("Internal Error, Could not perform immediate configuration (2) on %s",Pkg.Name());
|
|
+#endif
|
|
|
|
return true;
|
|
}
|
|
@@ -609,6 +611,7 @@ pkgPackageManager::OrderResult pkgPackag
|
|
DoneSomething = true;
|
|
}
|
|
|
|
+#if 0
|
|
// Final run through the configure phase
|
|
if (ConfigureAll() == false)
|
|
return Failed;
|
|
@@ -623,6 +626,7 @@ pkgPackageManager::OrderResult pkgPackag
|
|
return Failed;
|
|
}
|
|
}
|
|
+#endif
|
|
|
|
return Completed;
|
|
}
|