blob: 0d9c0be64f24a54bcf6e3c2ab794a18585784ef7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
The ref-* files are used by checkchroot to find unwanted packages in the chroots.
# cp ref-* /usr/local/chroot/
- stable-old is potato
- stable is woody
- different for diff arches
- you can basically get the list using something like:
grep-available -F priority -e -s package "(required|standard)" $CHROOT/var/lib/dpkg/available| \
awk '{print $2}'|sort
- the only extras should be:
apt
build-essential
fakeroot (some arches only use sudo and change $fakeroot config item)
ssmtp
sudo
|