summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorP. J. McDermott <pj@pehjota.net>2014-08-26 20:48:03 (EDT)
committer P. J. McDermott <pj@pehjota.net>2014-08-26 20:48:03 (EDT)
commit6da6b199c38fd9295be7ac110f6d63991c721165 (patch)
tree43a4f3fa6e2d5a7ce420d925209cabe3bf492473
parent45013122e99ebf578f00f8a0ca2e86c96b12908f (diff)
notes.txt: Drop dependency resolution notes
-rw-r--r--notes.txt36
1 files changed, 0 insertions, 36 deletions
diff --git a/notes.txt b/notes.txt
index 3cb9290..a29f70c 100644
--- a/notes.txt
+++ b/notes.txt
@@ -41,39 +41,3 @@ cmd_install_max_args=2
opkg cmd? parses opts after <chroot>?
maybe <chroot> itself should be an option?
-
-
-all_deps=
-while $new_pkgs not empty
- all_deps="$all_deps $new_pkgs"
- new_deps=
- for each pkg in $new_pkgs
- new_deps=`grep "^$pkg " *depends.list | cut -d ' ' -f 2-`
- new_deps=`printf '%s\n' $new_deps | sort -u`
- new_pkgs=
- for each pkg in $new_deps
- if $pkg not in $all_deps
- new_pkgs="$new_pkgs $pkg"
-
-
- for each line in feed index
- if line not empty
- parse control fields
- else
- run profile callback
- if $pkg should be installed
- pkgs="$pkgs $pkg"
- unresolved="$deps"
- while $unresolved not empty
- for each line in feed index
- if line not empty
- parse control fields
- else
- if $unresolved starts with $pkg
-
-
-allpkgs='base'
-newpkgs='busybox linux-image opkg'
-foreach pkg
- if $pkg in $newpkgs
-