We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b619b27 + 6bed907 commit 61eedabCopy full SHA for 61eedab
2 files changed
classes/linux/dtbs.yaml
@@ -13,6 +13,7 @@ buildSetup: |
13
makeParallel ${1:-dtbs} "${@:2}"
14
}
15
16
+packageVars: [LINUX_ARCH]
17
packageSetup: |
18
# Install the device tree files.
19
#
@@ -22,7 +23,7 @@ packageSetup: |
22
23
# are installed
24
linuxInstallDtbs()
25
{
- if [[ -n "${2:-}" ]]; then
26
+ if [[ ! "${2+set}" ]]; then
27
if [[ -d "$1/arch/$LINUX_ARCH/boot/dts" ]] ; then
28
make -C "$1" INSTALL_DTBS_PATH="$PWD" dtbs_install
29
fi
classes/linux/kmod-dist.yaml
@@ -1,5 +1,6 @@
1
inherit: [linux]
2
3
4
5
_SCRIPT_DIR=$1/kmod-script
6
0 commit comments