mirror of
https://github.com/dslm4515/BMLFS.git
synced 2026-01-14 00:33:30 +00:00
12 lines
411 B
Bash
Executable File
12 lines
411 B
Bash
Executable File
#! /bin/bash
|
|
|
|
# source: https://www.kernel.org/pub/linux/utils/usb/usbutils/usbutils-010.tar.xz
|
|
|
|
./configure --prefix=/usr --datadir=/usr/share/hwdata --build=x86_64-linux-musl &&
|
|
|
|
read -p "Compile? " && make -j4 &&
|
|
read -p "Install? " && sudo -S porg -lD "make -j1 install" &&
|
|
|
|
sudo -S porg -lD+ "install -dm755 /usr/share/hwdata/" &&
|
|
sudo -S wget http://www.linux-usb.org/usb.ids -O /usr/share/hwdata/usb.ids
|