@echo " ****************************************************************************** "
        find $(BOX)/bin -type f -print0 | xargs -0 $(TARGET)-strip || true
        find $(BOX)/sbin -type f -print0 | xargs -0 $(TARGET)-strip || true
+       find $(BOX)/usr -type f -print0 | xargs -0 $(TARGET)-strip || true
        find $(BOX)/lib -path $(BOX)/lib/modules -prune -o -type f -print0 | xargs -0 $(TARGET)-strip || true
+       find $(BOX)/var/bin -type f -print0 | xargs -0 $(TARGET)-strip 2>/dev/null || true
+       find $(BOX)/var/sbin -type f -print0 | xargs -0 $(TARGET)-strip 2>/dev/null || true
        du -sh $(BOX)
+