1
0
mirror of git://projects.qi-hardware.com/openwrt-packages.git synced 2024-11-22 05:09:41 +02:00

Merge branch 'master' of projects.qi-hardware.com:openwrt-packages

This commit is contained in:
kyak 2012-10-19 07:58:58 +04:00
commit c9e170461f
4 changed files with 7 additions and 6 deletions

View File

@ -19,7 +19,7 @@ define Package/avrdude
CATEGORY:=Utilities CATEGORY:=Utilities
TITLE:=AVR Downloader/UploaDEr TITLE:=AVR Downloader/UploaDEr
URL:=http://www.bsdhome.com/avrdude/ URL:=http://www.bsdhome.com/avrdude/
DEPENDS:=+libncurses +libusb +libreadline +libftdi DEPENDS:=+libncurses +libusb +libreadline +libftdi +libusb-1.0
endef endef
define Package/avrdude/description define Package/avrdude/description

View File

@ -39,7 +39,7 @@ endef
define Package/libggi define Package/libggi
$(call Package/libggi/Default) $(call Package/libggi/Default)
TITLE += (library) TITLE += (library)
DEPENDS:=+libgii +libncurses +svgalib DEPENDS:=+libgii +libncurses +svgalib +libaa
#+directfb #+directfb
endef endef

View File

@ -48,7 +48,7 @@ define Package/MPlayer
CATEGORY:=Multimedia CATEGORY:=Multimedia
TITLE:=MPlayer, the movie player TITLE:=MPlayer, the movie player
URL:=http://www.mplayerhq.hu URL:=http://www.mplayerhq.hu
DEPENDS:=+libjpeg +libpng +directfb +zlib +libsdl +libfreetype +fontconfig $(ICONV_DEPENDS) +BUILD_PATENTED:libmad +BUILD_PATENTED:libmpg123 +libaa +giflib +fribidi +libtheora +libggi +PACKAGE_libspeex:libspeex DEPENDS:=+libjpeg +libpng +directfb +zlib +libsdl +libfreetype +fontconfig $(ICONV_DEPENDS) +BUILD_PATENTED:libmad +BUILD_PATENTED:libmpg123 +libaa +giflib +fribidi +libtheora +libggi +PACKAGE_libspeex:libspeex +liblzo
endef endef
define Package/MPlayer/description define Package/MPlayer/description
@ -83,6 +83,7 @@ CONFIGURE_ARGS := --target=mips \
--disable-vm \ --disable-vm \
--disable-vdpau \ --disable-vdpau \
--disable-gl \ --disable-gl \
--disable-libgsm \
--disable-xf86keysym \ --disable-xf86keysym \
--disable-ossaudio \ --disable-ossaudio \
--enable-alsa \ --enable-alsa \

View File

@ -1,6 +1,6 @@
#!/bin/sh #!/bin/sh
__VERSION__=2011-03-07 __VERSION__=2012-10-15
if [ "$1" == "flash" ] && [ "$#" == "3" ]; then if [ "$1" == "flash" ] && [ "$#" == "3" ]; then
case "$2" in case "$2" in
@ -43,8 +43,8 @@ if [ "$1" == "mount" ] && [ "$#" == "3" ]; then
exit 1 exit 1
fi fi
ubiattach /dev/ubi_ctrl -m ${PARTITION} ubiattach /dev/ubi_ctrl -m ${PARTITION} > /dev/null 2>&1
DEV_UBI=`dmesg | grep "UBI: attached mtd${PARTITION} to" | cut -d ":" -f 2 | cut -d " " -f 5` DEV_UBI=`dmesg | grep "UBI: attached mtd${PARTITION} to" | tail -n 1 | cut -d ":" -f 2 | cut -d " " -f 5`
mount -t ubifs ${DEV_UBI}_0 $MOUNT_POINT mount -t ubifs ${DEV_UBI}_0 $MOUNT_POINT
exit 0 exit 0
fi fi