diff --git a/removals.go b/removals.go index 1961bae..92a9e23 100644 --- a/removals.go +++ b/removals.go @@ -4,6 +4,7 @@ import ( "github.com/rwinkhart/go-boilerplate/front" ) +// TODO remove unneeded linux-firmware packages! func removals() { for { var doAll bool diff --git a/system.go b/system.go index 148a173..000bbbb 100644 --- a/system.go +++ b/system.go @@ -21,6 +21,7 @@ func system() { doAll = true fallthrough case 3: + // TODO fix! err := os.RemoveAll("/tmp/custom-base-devel/") if err != nil { other.PrintError("Failed to remove /tmp/custom-base-devel", 1) @@ -106,6 +107,7 @@ depends=( } fallthrough case 5: + // TODO move to chroot! cmd := exec.Command("tune2fs", "-O", "fast_commit", front.Input("/dev/driveparition:")) err := cmd.Run() if err != nil {