search for: platform_id

Displaying 20 results from an estimated 28 matches for "platform_id".

2005 May 18
2
Networking functionality?
Is there (if not, can we get) the functionality to query for workstations in the local workgroup or domain? Zach
2008 Feb 25
3
customize resource routes
Hi all, I have this application that lists videogames, which i am rewriting to follow REST. I need to have this url : /games/xbox360/halo-3 ( map.connect "/ games/:platform_id/:permalink",:controller => "games",:action => "show" ) This is no problem with map.connect, but with map.resources i can not make this. map.resources :games do |game| game.resources :supply_used end The command makes the following url : /games/halo-3 /games/ha...
2014 Feb 10
1
isohybrid --mac doesn't find the mac efi image
...iso' > ... > Volume id : 'Fedora-LiveCD' > ... > Boot record : El Torito , ISOLINUX isohybrid MBR pointing to boot image > ... > Boot image : '/isolinux/isolinux.bin' , boot_info_table=on > Boot image : '/isolinux/efiboot.img' , platform_id=0xEF > Boot image : '/isolinux/macboot.img' , platform_id=0xEF > > Extract the MBR file for -isohybrid-mbr by > > dd if=Fedora-LiveCD.iso bs=512 count=1 of=/tmp/extracted.mbr > > and use a path to it as parameter of -isohybrid-mbr. > Use the mounted original...
2014 Feb 08
5
isohybrid --mac doesn't find the mac efi image
I posted this on the bugzilla page but I figured that on the mailing list it would get more attention. Please see http://bugzilla.syslinux.org/show_bug.cgi?id=49 for a description of my current issue. -- Thank you, Fernando Reyes GPG BDD75DD7 Mission Accomplish, Inc. http://missionaccomplish.com Email:design at missionaccomplish.com Tel: 7187100008 Cell: 3479275477
2014 Feb 10
0
isohybrid --mac doesn't find the mac efi image
...current: -indev 'Fedora-LiveCD.iso' ... Volume id : 'Fedora-LiveCD' ... Boot record : El Torito , ISOLINUX isohybrid MBR pointing to boot image ... Boot image : '/isolinux/isolinux.bin' , boot_info_table=on Boot image : '/isolinux/efiboot.img' , platform_id=0xEF Boot image : '/isolinux/macboot.img' , platform_id=0xEF Extract the MBR file for -isohybrid-mbr by dd if=Fedora-LiveCD.iso bs=512 count=1 of=/tmp/extracted.mbr and use a path to it as parameter of -isohybrid-mbr. Use the mounted original ISO as input directory. E.g.: moun...
2008 Jan 12
1
Collection_Select not showing Selected option
...></td> </tr> ### The controller; ### def driver_edit @drivers = CallDriver.find(params[:id]) @productline = ProductLine.find(:all) end ### And the debug results for CallDriver --- &id001 !ruby/object:CallDriver attributes: name: Billing (TV) segment_id: "1" platform_id: "1" updated_at: product_line_id: "3" id: "2" sub_product_line_id: "7" consolidation_id: "1" skill_id: "1" created_at: 2008-01-10 20:04:04 attributes_cache: {} Debug results for ProductLine; - !ruby/object:ProductLine att...
2011 Aug 05
3
isolinux: Generate GPT and Mac bootable images
...& 0x00000000FF000000) << 8 | (s & 0x000000FF00000000) >> 8; + + return r; +} + int check_banner(const uint8_t *buf) @@ -314,6 +514,43 @@ read_catalogue(const uint8_t *buf) } +int +read_efi_section(const uint8_t *buf) +{ + unsigned char header_indicator; + unsigned char platform_id; + short count; + + memcpy(&header_indicator, buf++, 1); + memcpy(&platform_id, buf++, 1); + + memcpy(&count, buf, 2); + count = lendian_short(count); + buf += 2; + + if (platform_id == 0xef) + return 0; + + return 1; +} + +int +read_efi_catalogue(const uint8_t *buf, uint16_t *count, u...
2014 Feb 09
1
isohybrid --mac doesn't find the mac efi image
...e Media blocks : 20992 readable , 8492956 writable , 8513948 overall Boot record : El Torito , ISOLINUX isohybrid MBR pointing to boot image Boot catalog : '/isolinux/boot.cat' Boot image : '/isolinux/isolinux.bin' , boot_info_table=on Boot image : '/boot/efiboot.img' , platform_id=0xEF Boot image : '/boot/macboot.img' , platform_id=0xEF TOC layout : Idx , sbsector , Size , Volume Id ISO session : 1 , 0 , 20992s , UEFI_TESTING Media summary: 1 session, 20992 data blocks, 41.0m data, 16.2g free Media nwa : 20992s * output after running iso...
2007 Oct 12
2
missing attribute: reorder
...anProcedures table. I''m getting an error that says The Header is NoMethodError in Manage_plan_procedures#list missing attribute: reorder Here is what my model looks like: >> PlanProcedure.column_names => ["id", "plan_id", "procedure_id", "platform_id", "plugin_id", "user_id", "release_id", "iteration_id", "minimum_priority", "procedure_iteration", "position", "created_on", "updated_on", "updated_by", "version", "reorder"]...
2022 Dec 25
1
CentOS Stream 8 sssd.service failing part of sssd-common-2.8.1-1.el8.x86_64 baseos package
...-2.8.1-1.el8.x86_64 2022-12-25T06:23:43+0100 DDEBUG /var/cache/dnf/baseos-055ffcb2ec25a27f/packages/sssd-common-2.8.1-1.el8.x86_64.rpm removed # cat /etc/os-release NAME="CentOS Stream" VERSION="8" ID="centos" ID_LIKE="rhel fedora" VERSION_ID="8" PLATFORM_ID="platform:el8" PRETTY_NAME="CentOS Stream 8" ANSI_COLOR="0;31" CPE_NAME="cpe:/o:centos:centos:8" HOME_URL="https://centos.org/" BUG_REPORT_URL="https://bugzilla.redhat.com/" REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 8" RED...
2014 Jul 29
0
isohybrid: slint64-14.1.iso: unable to find mac efi image
...orito-boot isolinux/efiboot.img \ -eltorito-alt-boot -no-emul-boot -eltorito-platform 0xEF \ -eltorito-boot isolinux/macboot.img \ >From util/isohybrid.c : ---------------------------------------------------------------- int read_efi_section(const uint8_t *buf) { ... if (platform_id == 0xef) return 0; return 1; } ... main(int argc, char *argv[]) { ... if (mode & EFI) { if (!read_efi_section(buf)) { ... } buf += 32; if (mode & MAC) { if (!read_efi_section(buf)) { ... }...
2020 Mar 26
12
Upgrading LLVM's minimum required CMake version
...New message() types NOTICE, VERBOSE, DEBUG and TRACE * string(REPEAT) added * MSVC_RUNTIME_LIBRARY target property and CMAKE_MSVC_RUNTIME_LIBRARY variable to select the runtime library type for MSVC * $<C_COMPILER_ID:...>, $<CXX_COMPILER_ID:...>, $<COMPILE_LANGUAGE:...>, and $<PLATFORM_ID:...> generator expressions support matching one value from a list * $<COMPILE_LANG_AND_ID:...> generator expression added * $<FILTER:list,INCLUDE|EXCLUDE,regex> generator expression added * $<REMOVE_DUPLICATES:list> generator expression added * New $<TARGET_FILE*> generat...
2020 Mar 26
4
Upgrading LLVM's minimum required CMake version
..., VERBOSE, DEBUG and TRACE >> * string(REPEAT) added >> * MSVC_RUNTIME_LIBRARY target property and CMAKE_MSVC_RUNTIME_LIBRARY variable to select the runtime library type for MSVC >> * $<C_COMPILER_ID:...>, $<CXX_COMPILER_ID:...>, $<COMPILE_LANGUAGE:...>, and $<PLATFORM_ID:...> generator expressions support matching one value from a list >> * $<COMPILE_LANG_AND_ID:...> generator expression added >> * $<FILTER:list,INCLUDE|EXCLUDE,regex> generator expression added >> * $<REMOVE_DUPLICATES:list> generator expression added >>...
2020 Jul 23
2
vfs_shadow_copy2: permission denied - SMB_VFS_NEXT_OPENDIR() failed for '/snapshots'
...here are no previous versions available" information: -------------------------------------------- smb --version Version 4.11.2 /etc/*-release NAME="Red Hat Enterprise Linux" VERSION="8.2 (Ootpa)" ID="rhel" ID_LIKE="fedora" VERSION_ID="8.2" PLATFORM_ID="platform:el8" PRETTY_NAME="Red Hat Enterprise Linux 8.2 (Ootpa)" ANSI_COLOR="0;31" CPE_NAME="cpe:/o:redhat:enterprise_linux:8.2:GA" HOME_URL="https://www.redhat.com/" BUG_REPORT_URL="https://bugzilla.redhat.com/" REDHAT_BUGZILLA_PRODUCT=...
2014 Jul 29
2
isohybrid: slint64-14.1.iso: unable to find mac efi image
HI, In http://slint.fr/misc/MacBoot/ you'll find all context information. All files referenced here are stored there. Long story short: once dd-ed on an USB stick the ISO image can boot on a BIOS or EFI machine, but I want it to be able to boot on most x86_64 Macs with an EFI firmware. Unfortunately I get the error message: isohybrid: slint64-14.1.iso: unable to find mac efi image The
2020 Apr 02
2
Upgrading LLVM's minimum required CMake version
...New message() types NOTICE, VERBOSE, DEBUG and TRACE * string(REPEAT) added * MSVC_RUNTIME_LIBRARY target property and CMAKE_MSVC_RUNTIME_LIBRARY variable to select the runtime library type for MSVC * $<C_COMPILER_ID:...>, $<CXX_COMPILER_ID:...>, $<COMPILE_LANGUAGE:...>, and $<PLATFORM_ID:...> generator expressions support matching one value from a list * $<COMPILE_LANG_AND_ID:...> generator expression added * $<FILTER:list,INCLUDE|EXCLUDE,regex> generator expression added * $<REMOVE_DUPLICATES:list> generator expression added * New $<TARGET_FILE*> generat...
2024 Apr 17
3
[Bug 1746] New: Connection Tracking - TC_DROP in SK_BUFF
...org Reporter: gmckee at crusoeenergy.com Hi, We are having issues with Connection Tracking / TC and its interaction with Open vSwitch. NAME="Rocky Linux" VERSION="9.3 (Blue Onyx)" ID="rocky" ID_LIKE="rhel centos fedora" VERSION_ID="9.3" PLATFORM_ID="platform:el9" PRETTY_NAME="Rocky Linux 9.3 (Blue Onyx)" ANSI_COLOR="0;32" LOGO="fedora-logo-icon" CPE_NAME="cpe:/o:rocky:rocky:9::baseos" HOME_URL="https://rockylinux.org/" BUG_REPORT_URL="https://bugs.rockylinux.org/" SUPPORT_E...
2024 Apr 17
1
[Bug 1747] New: Connection Tracking - TC_DROP in SK_BUFF
...org Reporter: gmckee at crusoeenergy.com Hi, We are having issues with Connection Tracking / TC and its interaction with Open vSwitch. NAME="Rocky Linux" VERSION="9.3 (Blue Onyx)" ID="rocky" ID_LIKE="rhel centos fedora" VERSION_ID="9.3" PLATFORM_ID="platform:el9" PRETTY_NAME="Rocky Linux 9.3 (Blue Onyx)" ANSI_COLOR="0;32" LOGO="fedora-logo-icon" CPE_NAME="cpe:/o:rocky:rocky:9::baseos" HOME_URL="https://rockylinux.org/" BUG_REPORT_URL="https://bugs.rockylinux.org/" SUPPORT_E...
2020 Apr 02
2
Upgrading LLVM's minimum required CMake version
...New message() types NOTICE, VERBOSE, DEBUG and TRACE * string(REPEAT) added * MSVC_RUNTIME_LIBRARY target property and CMAKE_MSVC_RUNTIME_LIBRARY variable to select the runtime library type for MSVC * $<C_COMPILER_ID:...>, $<CXX_COMPILER_ID:...>, $<COMPILE_LANGUAGE:...>, and $<PLATFORM_ID:...> generator expressions support matching one value from a list * $<COMPILE_LANG_AND_ID:...> generator expression added * $<FILTER:list,INCLUDE|EXCLUDE,regex> generator expression added * $<REMOVE_DUPLICATES:list> generator expression added * New $<TARGET_FILE*> generat...
2020 Mar 26
2
Upgrading LLVM's minimum required CMake version
...New message() types NOTICE, VERBOSE, DEBUG and TRACE * string(REPEAT) added * MSVC_RUNTIME_LIBRARY target property and CMAKE_MSVC_RUNTIME_LIBRARY variable to select the runtime library type for MSVC * $<C_COMPILER_ID:...>, $<CXX_COMPILER_ID:...>, $<COMPILE_LANGUAGE:...>, and $<PLATFORM_ID:...> generator expressions support matching one value from a list * $<COMPILE_LANG_AND_ID:...> generator expression added * $<FILTER:list,INCLUDE|EXCLUDE,regex> generator expression added * $<REMOVE_DUPLICATES:list> generator expression added * New $<TARGET_FILE*> generat...