diff options
author | Cem Keylan <cem@ckyln.com> | 2021-07-23 10:41:10 +0300 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2021-07-23 10:41:10 +0300 |
commit | b8f6c141dd0dde3cf5cd25f723d1beb34f709fb5 (patch) | |
tree | b7394271c8928abd04429242190d12dc95b4734c | |
parent | 7efb04dcb8308dec54920617c8358db6381f330e (diff) | |
download | mkrootfs-b8f6c141dd0dde3cf5cd25f723d1beb34f709fb5.tar.gz |
update defaults
-rw-r--r-- | config.def | 12 |
1 files changed, 4 insertions, 8 deletions
@@ -9,8 +9,8 @@ MNTDIR="$PWD/rootfs" # List of packages to be installed # Most of those are already dependencies of each other but it is not a bad idea # to put them to the list anyway. -PKGS="baselayout cpt musl gcc make gzip xz zlib bzip2 binutils byacc ca-certificates bearssl curl \ - linux-headers m4 flex busybox pkgconf rsync git" +PKGS="baselayout otools cl-utils cpt musl gcc make gzip xz zlib bzip2 binutils + byacc libressl curl linux-headers m4 flex busybox pkgconf rsync git" # BUILD FLAGS # It is a good idea to not use flags like "native". If you plan on using the @@ -27,7 +27,7 @@ MAKEFLAGS="-j$(nproc)" # Repository # This repository will be cloned to /tmp/repo on the host. It is optional. -REPO="rsync://carbslinux.org/repo" +REPO="https://git.carbslinux.org/repository" # Host repo path is the repository to use when building packages. HOST_REPO_PATH="/tmp/repo/core" @@ -36,11 +36,7 @@ export MNTDIR PKGS CFLAGS CXXFLAGS REPO HOST_REPO_PATH MAKEFLAGS postinstall() { # You can preferably add some custom # commands if you want a # postinstall procedure. This runs right after cpt-install is complete. - - # Currently default function is 'true' because there is nothing else to - # be done, but you can safely remove it if you will be adding some - # post-installation commands. - true + cpt a | grep ^otools | cpt a - } # vim:filetype=sh |