ubootTools: add man pages
As far as I can tell, there are no makefile targets to install these, or anything like that, so we have to do it by hand. This adds man pages for dumpimage, kwboot, mkeficapsule, and mkimage. There are no man pages in other sections than 1.
This commit is contained in:
parent
48f8e39bfb
commit
614b63922b
1 changed files with 8 additions and 0 deletions
|
@ -8,6 +8,7 @@
|
|||
, fetchurl
|
||||
, flex
|
||||
, gnutls
|
||||
, installShellFiles
|
||||
, libuuid
|
||||
, meson-tools
|
||||
, ncurses
|
||||
|
@ -66,6 +67,7 @@ let
|
|||
bison
|
||||
dtc
|
||||
flex
|
||||
installShellFiles
|
||||
openssl
|
||||
(buildPackages.python3.withPackages (p: [
|
||||
p.libfdt
|
||||
|
@ -136,6 +138,12 @@ in {
|
|||
dontStrip = false;
|
||||
extraMeta.platforms = lib.platforms.linux;
|
||||
extraMakeFlags = [ "HOST_TOOLS_ALL=y" "CROSS_BUILD_TOOLS=1" "NO_SDL=1" "tools" ];
|
||||
|
||||
outputs = [ "out" "man" ];
|
||||
|
||||
postInstall = ''
|
||||
installManPage doc/*.1
|
||||
'';
|
||||
filesToInstall = [
|
||||
"tools/dumpimage"
|
||||
"tools/fdtgrep"
|
||||
|
|
Loading…
Reference in a new issue