Hi folks,
as a way to determine which packages are included in base, dev and test images I've been looking (*) at the dependencies of target-os, target-os-dev and target-os-test. Surprisingly (to me) the base image includes way more packages than either dev or test images:
701 target-os
413 target-os-dev
551 target-os-test
Naively I'd have assumed for dev and test images to be exact supersets of base. Could somebody explain why this isn't the case? (I've used BOARD=lulu, but other boards I've tried look similar.)
Thank you,
Thiemo
for PKG in target-os{,-dev,-test}; do parallel_emerge --pretend --emptytree --board=$BOARD virtual/$PKG | grep -e '^\[' | cut -c18- | cut -f1 -d' ' | sort > DEPS.$BOARD.$PKG; done