summaryrefslogtreecommitdiff
path: root/repo/system/ubase.xibuild
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2022-03-20 00:00:54 +0000
committerdavidovski <david@davidovski.xyz>2022-03-20 00:00:54 +0000
commit19b9a12a93a45cc02b31de9b40c45029fbf3c569 (patch)
treec2c415813d63b7773fa2a533789a1753b9fee724 /repo/system/ubase.xibuild
parent1daf71c2980b1920bbdc2f07af669ebf6f0f82d6 (diff)
changed the linux kernel configs
Diffstat (limited to 'repo/system/ubase.xibuild')
-rw-r--r--repo/system/ubase.xibuild16
1 files changed, 12 insertions, 4 deletions
diff --git a/repo/system/ubase.xibuild b/repo/system/ubase.xibuild
index 6b21576..30a7de3 100644
--- a/repo/system/ubase.xibuild
+++ b/repo/system/ubase.xibuild
@@ -16,9 +16,17 @@ build () {
}
package () {
- install -d $PKG_DEST/usr/bin
- install -m755 stat $PKG_DEST/usr/bin
+ for p in stat id df dd truncate who; do
+ install -d $PKG_DEST/usr/bin
+ install -m755 $p $PKG_DEST/usr/bin
- install -d $PKG_DEST/usr/share/man
- install -m644 stat.1 $PKG_DEST/usr/share/man/stat.1
+ if [ -f $p.1 ]; then
+ install -d $PKG_DEST/usr/share/man
+ install -m644 $p.1 $PKG_DEST/usr/share/man/$p.1
+ fi
+ if [ -f $p.8 ]; then
+ install -d $PKG_DEST/usr/share/man
+ install -m644 $p.8 $PKG_DEST/usr/share/man/$p.8
+ fi
+ done;
}