#!/bin/sh set -o errexit # First argument of this script is the package name. # Remaining arguments are additional configure options. # Reading system configuration informations, functions and package versions. source ../sysinfos source ../functions source ../packages-list PACKAGE=${1} shift CONFIGURE_OPTS=${*} # Applying patches (if any) apply_patches ${PACKAGE} cd ${LFS_TMP}/${PACKAGE} ./configure \ --prefix=/usr \ --sysconfdir=/etc \ ${CONFIGURE_OPTS} make make install ldconfig cat > /etc/udev/rules.d/23-usb.rules << "EOF" # Set group ownership for raw USB devices SUBSYSTEM=="usb", ENV{DEVTYPE}=="usb_device", GROUP="usb" EOF # Checking if string exists #if ! grep "/proc/bus/usb" /etc/fstab 1> /dev/null 2>&1; then # echo "usbfs /proc/bus/usb usbfs ddevgid=14,devmode=0660 0 0" >> /etc/fstab #fi exit $?