[Kernelloader-cvs] linux/buildroot build.sh, 1.6, 1.7 buildroot-config-base.txt, 1.5, 1.6
Run Linux on the Playstation 2
Brought to you by:
kloader
From: Mega M. <kl...@us...> - 2014-08-03 13:15:21
|
Update of /cvsroot/kernelloader/linux/buildroot In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv6473 Modified Files: build.sh buildroot-config-base.txt Log Message: Enable libjpeg, SDL and curl for developing web based applications. Disaable DHCP, because this will not work with nfsroot. Index: buildroot-config-base.txt =================================================================== RCS file: /cvsroot/kernelloader/linux/buildroot/buildroot-config-base.txt,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** buildroot-config-base.txt 18 Jul 2014 22:16:35 -0000 1.5 --- buildroot-config-base.txt 3 Aug 2014 13:15:19 -0000 1.6 *************** *** 1,5 **** # # Automatically generated file; DO NOT EDIT. ! # Buildroot 2014.08-git-g27891dd-dirty Configuration # BR2_HAVE_DOT_CONFIG=y --- 1,5 ---- # # Automatically generated file; DO NOT EDIT. ! # Buildroot 2014.08-git-g64f153b-dirty Configuration # BR2_HAVE_DOT_CONFIG=y *************** *** 562,566 **** # psplash needs a toolchain w/ wchar # ! # BR2_PACKAGE_SDL is not set # --- 562,591 ---- # psplash needs a toolchain w/ wchar # ! BR2_PACKAGE_SDL=y ! BR2_PACKAGE_SDL_FBCON=y ! # BR2_PACKAGE_SDL_GFX is not set ! BR2_PACKAGE_SDL_IMAGE=y ! ! # ! # SDL_image file format support ! # ! BR2_PACKAGE_SDL_IMAGE_BMP=y ! # BR2_PACKAGE_SDL_IMAGE_GIF is not set ! BR2_PACKAGE_SDL_IMAGE_JPEG=y ! # BR2_PACKAGE_SDL_IMAGE_LBM is not set ! # BR2_PACKAGE_SDL_IMAGE_PCX is not set ! # BR2_PACKAGE_SDL_IMAGE_PNG is not set ! # BR2_PACKAGE_SDL_IMAGE_PNM is not set ! # BR2_PACKAGE_SDL_IMAGE_TARGA is not set ! # BR2_PACKAGE_SDL_IMAGE_TIFF is not set ! # BR2_PACKAGE_SDL_IMAGE_WEBP is not set ! # BR2_PACKAGE_SDL_IMAGE_XCF is not set ! # BR2_PACKAGE_SDL_IMAGE_XPM is not set ! # BR2_PACKAGE_SDL_IMAGE_XV is not set ! # BR2_PACKAGE_SDL_MIXER is not set ! # BR2_PACKAGE_SDL_NET is not set ! BR2_PACKAGE_SDL_SOUND=y ! # BR2_PACKAGE_SDL_SOUND_PLAYSOUND is not set ! # BR2_PACKAGE_SDL_TTF is not set # *************** *** 833,837 **** # # BR2_PACKAGE_BEECRYPT is not set ! # BR2_PACKAGE_CA_CERTIFICATES is not set # --- 858,862 ---- # # BR2_PACKAGE_BEECRYPT is not set ! BR2_PACKAGE_CA_CERTIFICATES=y # *************** *** 912,916 **** # BR2_PACKAGE_IMLIB2 is not set # BR2_PACKAGE_JASPER is not set ! # BR2_PACKAGE_JPEG is not set # BR2_PACKAGE_LCMS2 is not set # BR2_PACKAGE_LIBART is not set --- 937,945 ---- # BR2_PACKAGE_IMLIB2 is not set # BR2_PACKAGE_JASPER is not set ! BR2_PACKAGE_JPEG=y ! BR2_PACKAGE_LIBJPEG=y ! # BR2_PACKAGE_JPEG_TURBO is not set ! BR2_PACKAGE_HAS_JPEG=y ! BR2_PACKAGE_PROVIDES_JPEG="libjpeg" # BR2_PACKAGE_LCMS2 is not set # BR2_PACKAGE_LIBART is not set *************** *** 1020,1024 **** # BR2_PACKAGE_EZXML is not set # BR2_PACKAGE_JANSSON is not set ! # BR2_PACKAGE_JSON_C is not set # --- 1049,1053 ---- # BR2_PACKAGE_EZXML is not set # BR2_PACKAGE_JANSSON is not set ! BR2_PACKAGE_JSON_C=y # *************** *** 1107,1111 **** # BR2_PACKAGE_LIBCGI is not set # BR2_PACKAGE_LIBCGICC is not set ! # BR2_PACKAGE_LIBCURL is not set # BR2_PACKAGE_LIBDNET is not set # BR2_PACKAGE_LIBEXOSIP2 is not set --- 1136,1141 ---- # BR2_PACKAGE_LIBCGI is not set # BR2_PACKAGE_LIBCGICC is not set ! BR2_PACKAGE_LIBCURL=y ! # BR2_PACKAGE_CURL is not set # BR2_PACKAGE_LIBDNET is not set # BR2_PACKAGE_LIBEXOSIP2 is not set *************** *** 1283,1287 **** # BR2_PACKAGE_LIBESTR is not set # BR2_PACKAGE_LIBFRIBIDI is not set ! # BR2_PACKAGE_LIBICONV is not set # BR2_PACKAGE_LINENOISE is not set # BR2_PACKAGE_NCURSES is not set --- 1313,1317 ---- # BR2_PACKAGE_LIBESTR is not set # BR2_PACKAGE_LIBFRIBIDI is not set ! BR2_PACKAGE_LIBICONV=y # BR2_PACKAGE_LINENOISE is not set # BR2_PACKAGE_NCURSES is not set Index: build.sh =================================================================== RCS file: /cvsroot/kernelloader/linux/buildroot/build.sh,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** build.sh 18 Jul 2014 20:43:25 -0000 1.6 --- build.sh 3 Aug 2014 13:15:19 -0000 1.7 *************** *** 16,23 **** if [ ! -d "${BUILDROOTDIR}" ]; then git clone https://github.com/jur/ps2-buildroot.git ! cat >>ps2-buildroot/system/skeleton/etc/network/interfaces <<EOF ! auto eth0 ! iface eth0 inet dhcp ! EOF fi --- 16,23 ---- if [ ! -d "${BUILDROOTDIR}" ]; then git clone https://github.com/jur/ps2-buildroot.git ! # cat >>ps2-buildroot/system/skeleton/etc/network/interfaces <<EOF ! #auto eth0 ! #iface eth0 inet dhcp ! #EOF fi |