Added rust, libtirpc, mpdecimal dep injects, removed debug du from Makefile

This commit is contained in:
Matt Housh 2018-04-26 19:32:06 -05:00
parent 1e627611c7
commit 4cf4d2e4e0
2 changed files with 8 additions and 1 deletions

View File

@ -326,7 +326,6 @@ rootfs: kernel busybox
@for F in setup setup-helper setup-chroot serial_console; do \ @for F in setup setup-helper setup-chroot serial_console; do \
cp iso/bin/$$F $(ROOTFS_DIR)/usr/bin; \ cp iso/bin/$$F $(ROOTFS_DIR)/usr/bin; \
done done
@echo "- rootfs size before compression: $(shell du -sh $(ROOTFS_DIR))"
@echo "- Compressing (rootfs.tar.xz)..." @echo "- Compressing (rootfs.tar.xz)..."
@mkdir -p rootfs @mkdir -p rootfs
@(cd $(ROOTFS_DIR) && tar -Jcf ../../rootfs/rootfs.tar.xz . 2>/dev/null) @(cd $(ROOTFS_DIR) && tar -Jcf ../../rootfs/rootfs.tar.xz . 2>/dev/null)

View File

@ -106,3 +106,11 @@ for package in xorg-libxv xorg-libx11 xorg-libxfont2 xorg-libxfixes xorg-server
fi fi
fi fi
done done
if [ `is_installed firefox` ]; then
inject_packages rust
fi
if [ `is_installed python3` ]; then
inject_packages libtirpc mpdecimal
fi