Skip to content

Instantly share code, notes, and snippets.

@tsirysndr
Created April 24, 2019 21:30
Show Gist options
  • Save tsirysndr/72f7b969c73a4094b1c4344d9f749529 to your computer and use it in GitHub Desktop.
Save tsirysndr/72f7b969c73a4094b1c4344d9f749529 to your computer and use it in GitHub Desktop.
Build Rockbox inside docker
FROM ubuntu:16.04
RUN apt-get update -y
RUN apt-get install -y build-essential libsdl1.2-dev zip unzip git
WORKDIR /usr/src
RUN git clone git://git.rockbox.org/rockbox
WORKDIR /usr/src/rockbox/build
RUN ../tools/configure --target=200 --type=N --lcdwidth=320 --lcdheight=240
RUN make && make install
WORKDIR /
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment