~m-grant-prg/kernel-utils/bullseye

« back to all changes in this revision

Viewing changes to README

  • Committer: Mark Grant
  • Date: 2019-10-10 14:03:54 UTC
  • mfrom: (1.1.19)
  • Revision ID: m.grant.prg@gmail.com-20191010140354-paf16goo84wqnu5a
Merge new upstream development release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
----------------
2
2
Kernel Utilities
3
3
================
 
4
 
 
5
Author - Copyright (C) 2016-2019 Mark Grant
 
6
 
4
7
--------
5
8
Contents
6
9
========
9
12
 
10
13
2 ... AutoTools (configure and make) Installation
11
14
 
12
 
3 ... Ubuntu, Debian and Raspbian Installation
 
15
3 ... Installation of Distro-Native Packages
13
16
 
14
17
4 ... Utility Scripts
15
18
 
59
62
2 ... As root or sudo, type 'make uninstall clean'
60
63
 
61
64
 
62
 
----------------------------------------------
63
 
3 ... Ubuntu, Debian and Raspbian Installation
64
 
==============================================
65
 
Please refer to the relevant installation section on the wiki at:-
 
65
--------------------------------------------
 
66
3 ... Installation of Distro-Native Packages
 
67
============================================
 
68
Installation packages native to different distributions are available, please
 
69
refer to the relevant installation section on the wiki at:-
66
70
 
67
71
https://github.com/m-grant-prg/kernel-utils/wiki
68
72
 
85
89
 
86
90
Assuming you adopt the preceding paragraph then a typical invocation of the
87
91
script would be:-
88
 
../bootstrap.sh --build ..
 
92
 
 
93
../bootstrap.sh --config --build ..
 
94
 
89
95
The last '..' points the way to project root.
90
96
 
91
 
The full list of arguments to bootstrap.sh are:-
92
 
        -b, --build make the project.
93
 
 
94
 
        -c, --config configure the project.
95
 
 
96
 
        -C, --distcheck perform a normal make distcheck.
97
 
 
98
 
        -d, --debug build with appropriate debug flags.
99
 
 
100
 
        -D, --dist perform a make dist.
101
 
 
102
 
        -F, --distcheckfake run a make distcheck using a fake AT standard
103
 
        directory as a substitute for an absolute path which distcheck does not
104
 
        support.
105
 
 
106
 
        -g, --gnulib run gnulib-tool --update. Checks for the existence of the
107
 
        cache file proj-root/m4/gnulib-cache.m4. If it does not exist the update
108
 
        is not run.
109
 
 
110
 
        -h, --help prints usage information.
111
 
 
112
 
        -s, --sparse pass --enable-sparse=yes to configure.
113
 
 
114
 
        -T, --source-tarball perform a make srctarball to build a source
115
 
        tarball.
116
 
 
117
 
        -V, --version prints version information
118
 
 
119
 
Options b build, C distcheck, D dist, F distcheckfake and T source-tarball are
120
 
mutually exclusive.
121
 
 
122
 
Options d debug, F distcheckfake and s sparse are enabled by configure so
123
 
require option c config.
 
97
For the full list of arguments to bootstrap.sh, please refer to the options
 
98
section of the acmbuild wiki, the options are identical:-
 
99
 
 
100
https://github.com/m-grant-prg/acmbuild/wiki
124
101