Name |
Date |
Size |
#Lines |
LOC |
||
---|---|---|---|---|---|---|
.. | - | - | ||||
lists/ | H | - | - | 101,081 | 100,687 | |
Makefile | H A D | 09-Mar-2024 | 10.1 KiB | 364 | 252 | |
README | H A D | 25-Sep-2021 | 2.7 KiB | 79 | 56 | |
TODO | H A D | 11-Nov-2004 | 836 | 20 | 18 | |
attrs | H A D | 07-Mar-2020 | 456 | 20 | 19 | |
checkflist | H A D | 21-Aug-2022 | 6.6 KiB | 294 | 219 | |
comments | H A D | 05-Sep-2023 | 29.7 KiB | 472 | 471 | |
culldeps | H A D | 08-Jan-2006 | 2.1 KiB | 85 | 36 | |
deps | H A D | 05-Sep-2023 | 15.3 KiB | 500 | 499 | |
descrs | H A D | 05-Feb-2024 | 53.1 KiB | 854 | 853 | |
fmt-list | H A D | 08-Sep-2022 | 11.6 KiB | 460 | 381 | |
getdirs.awk | H A D | 12-Mar-2013 | 2.3 KiB | 90 | 41 | |
join.awk | H A D | 24-Oct-2019 | 3.2 KiB | 97 | 50 | |
listpkgs | H A D | 04-Jan-2006 | 938 | 50 | 37 | |
makeflist | H A D | 08-Nov-2023 | 1.6 KiB | 84 | 69 | |
makeobsolete | H A D | 08-Nov-2023 | 1.6 KiB | 86 | 71 | |
makeplist | H A D | 08-Nov-2023 | 3.5 KiB | 142 | 86 | |
makesrctars | H A D | 08-Nov-2023 | 2.7 KiB | 144 | 105 | |
makesums | H A D | 08-Nov-2023 | 2 KiB | 81 | 52 | |
maketars | H A D | 22-Apr-2024 | 5.7 KiB | 253 | 205 | |
metalog.subr | H A D | 17-Feb-2011 | 1 KiB | 89 | 75 | |
mkvars.mk | H A D | 18-Aug-2024 | 2.1 KiB | |||
regpkg | H A D | 11-Feb-2023 | 30.5 KiB | 1,077 | 655 | |
regpkgset | H A D | 22-Apr-2024 | 5.7 KiB | 196 | 109 | |
sets.subr | H A D | 11-Jul-2024 | 19.3 KiB | 899 | 845 | |
sort-list | H A D | 04-Sep-2020 | 220 | 15 | 11 | |
syspkgdeps | H A D | 28-Jan-2006 | 3.3 KiB | 140 | 93 | |
versions | H A D | 18-Jun-2003 | 22 | 2 | 1 |
README
1# $NetBSD: README,v 1.16 2021/09/25 08:54:30 maya Exp $ 2 3the scripts should be run from the directory where they reside. 4 5makeflist: output the list of files that should be in a 6 distribution, according to the contents of the 7 'lists' directory. 8 9checkflist: check the file list (as internally generated 10 by makeflist) against the tree living in $DESTDIR. 11 (that tree should be made with 'make distribution'.) 12 13maketars: make tarballs of the various sets in the distribution, 14 based on the contents of the lists, the tree in 15 $DESTDIR, and put the tarballs in $RELEASEDIR. 16 Note that this script _doesn't_ create the 'secr' 17 distribution, because (for now) it requires 18 manual intervention to get the binaries right... 19 (i'll add another script to create that dist, later.) 20 21what's in 'lists': 22 23lists describing file sets. There are two sets of lists per file 24set: machine dependent and machine-independent files. (there's 25also another file in the 'man' dir, which is used by the 'man' 26and 'misc' sets, but that's explained later.) 27 28There is one machine-independent file, named "mi". There are 29N machine-dependent files (one per architecture), named "md.${ARCH}". 30 31the sets are as follows: 32 33 base: the base binary set. excludes everything described 34 below. 35 36 comp: compiler tools. All of the tools relating to C, C++, 37 and FORTRAN (yes, there are two!) that are in the 38 tree. This includes includes, the linker, tool chain, 39 and the .a versions of the libraries. (obviously, 40 base includes ldd, ld.so, and the shared versions. 41 base also includes 'cpp', because that's used by X11.) 42 includes the man pages for all the binaries contained 43 within. Also, includes all library and system call 44 manual pages. 45 46 debug: Debugging libraries (_g.a/MKDEBUGLIB) and (.debug/MKDEBUG) 47 binaries. 48 49 dtb: Device tree blobs (MKDTB). 50 51 etc: /etc, and associated files (/var/cron/tabs, /root, 52 etc.). things that shouldn't be blindly reinstalled 53 on an upgrade. 54 55 games: the games and their man pages. 56 57 gpufw: heavy firmware files used by graphical drivers. 58 59 man: all of the man pages for the system, except those 60 listed elsewhere (e.g. in comp, games, misc, text). 61 Includes machine-dependent man pages for this CPU. 62 63 misc: share/dict, share/doc, and the machine-dependent 64 man pages for other CPUs which happen to always 65 be installed. 66 67 modules: stand/${MACHINE}/${OSRELEASE}/modules kernel modules 68 69 rescue: Standalone system recovery tools. 70 71 tests: unit, regression, integration and stress tests for the 72 whole system. 73 74 text: text processing tools. groff and all of its friends. 75 includes man pages for all bins contained within. 76 77Each set must contain "./etc/mtree/set.<set name>" within the mi 78list. Failure to add this will break unprivileged builds. 79