Bash script:
FFMPEG_PATH="ffmpeg"
for FILE in *.webm; do echo -e "Processing video $FILE"; ${FFMPEG_PATH} -i "${FILE}" -vn -ab 128k -ar 44100 -y "${FILE%.webm}.mp3";done;
for FILE in *.webm; do echo -e "Processing video $FILE"; ${FFMPEG_PATH} -i "${FILE}" -vn -ab 128k -ar 44100 -y "${FILE%.webm}.mp3";done;
## Summary This repository has essential files for installing a fully functional Asus C300 Chromebook Linux System ## Bios and Install Remove write-protect screw from Asus C300 Chromebook motherboard, http://www.matws.org/c300/ Get Developer Access on Chromebook Open Console Install SeaBios via ./bios/lewis-fw-c300.tar.gz script Install your OS choice on a USB drive (MBR boot), I used Linux Mint 17.2 Boot into your USB and install it to the MMC 16GB, be very careful not to touch the boot MMC. ## Kernel Under the ./kernel directory is a bash script that will install Linux 4.4 32 bit, this version has the best support for the C300. Keyboard, Touchpad, Wifi, Sleep, Screen Brightness, Sound all work if you do the work below with this kernel. ## Sound Copy the ./sound/fw_sst* files to /lib/firmware/intel/ Copy the ./sound/asound.state to /var/lib/alsa/asound.state Reboot ## Wifi Copy ./wifi/iwlwifi-7260-17.ucode /lib/firmware Reboot
find . -type f -name "*.mp4" -exec ffmpeg -i "{}" -b:a 192K -vn "{}.mp3" -n ;
patch -p1 < ./kindle-3.3-kernel-buildfix.patch
make imx35_luigi_defconfig
CONFIG_INITRAMFS_SOURCE=""
export ARCH=arm export CROSS_COMPILE=/home/thomas/workspace/arm-2008q3/bin/arm-none-linux-gnueabi-
#!/bin/sh echo "=============Making make" make echo "=============Making uImage" make uImage echo "=============Making modules" make modules echo "=============Making modules tar at linux-2.6.26-rt-lab126.tar.gz" make targz-pkg echo "=============Making modules.dep" depmod -ae -F System.map -b tar-install -r 2.6.26-rt-lab126 -n > modules.dep # replace /kernel with /lib/modules/2.6.26-rt-lab126/kernel/ echo "=============Applying /kernel directory remapping" perl -pi -e 's/kernel\//\/lib\/modules\/2.6.26-rt-lab126\/kernel\//g' modules.dep echo "=============Outputing uImage, modules.dep and tared modules into ./export directory" mkdir ./export cp arch/arm/boot/uImage ./export/. cp modules.dep ./export/. cp linux-2.6.26-rt-lab126.tar.gz ./export/.
chmod 644 /lib/modules/2.6.26-rt-lab126/modules.dep /test/flashtools/luigi/update /tmp/uImage
git config --global merge.tool p4merge
git config --global mergetool.p4merge.path /Applications/p4merge.app/Contents/Resources/launchp4merge