File tree Expand file tree Collapse file tree 4 files changed +7
-40
lines changed
Expand file tree Collapse file tree 4 files changed +7
-40
lines changed Original file line number Diff line number Diff line change @@ -24,25 +24,21 @@ ifndef IMAGE
2424 $(error IMAGE is not set. Please specify IMAGE=<image> when running make build or make build-dev)
2525endif
2626
27- .PHONY : all build build-dev setup measure clean check-perms check- module
27+ .PHONY : all build build-dev setup measure clean check-module
2828
2929# Default target
3030all : build
3131
32- # Ensure repo was cloned with correct permissions
33- check-perms : # # Check repository permissions
34- @scripts/check_perms.sh
35-
3632# Setup dependencies (Linux only)
3733setup : # # Install dependencies (Linux only)
3834 @scripts/setup_deps.sh
3935
4036# Build module
41- build : check-perms setup # # Build the specified module
37+ build : setup # # Build the specified module
4238 $(WRAPPER ) mkosi --force --image-id $(IMAGE ) -I $(IMAGE ) .conf
4339
4440# Build module with devtools profile
45- build-dev : check-perms setup # # Build module with development tools
41+ build-dev : setup # # Build module with development tools
4642 $(WRAPPER ) mkosi --force --image-id $(IMAGE ) -dev --profile=devtools -I $(IMAGE ) .conf
4743
4844# #@ Utilities
Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ PostInstallationScripts=base/efi-stub.sh
2525SyncScripts=base/add-backports.sh
2626FinalizeScripts=base/debloat.sh
2727FinalizeScripts=base/remove-image-version.sh
28+ SyncScripts=base/normalize-umask.sh
2829
2930CleanPackageMetadata=true
3031Packages=kmod
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+ set -euo pipefail
3+ chmod -cR go-w " $SRCDIR "
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments