Utility to route USB ports to EHCI (instead of XHCI) on AMD APU SoCs.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
CFLAGS = -Wall -O2
|
|
|
|
all: apu-ehci
|
|
|
|
apu-ehco: apu-ehci.o
|
|
$(CC) -o $@ $^
|
|
|
|
%.o: %.c
|
|
$(CC) $(CFLAGS) -o $@ -c $<
|
|
|
|
clean:
|
|
@rm -f *.o apu-ehci
|
|
|